GitHub
github.com › rohan-paul › Awesome-JavaScript-Interviews
GitHub - rohan-paul/Awesome-JavaScript-Interviews: Popular JavaScript / React / Node / Mongo stack Interview questions and their answers. Many of them, I faced in actual interviews and ultimately got my first full-stack Dev job :) · GitHub
Popular JavaScript / React / Node / Mongo stack Interview questions and their answers. Many of them, I faced in actual interviews and ultimately got my first full-stack Dev job :) - GitHub - rohan-paul/Awesome-JavaScript-Interviews: Popular JavaScript / React / Node / Mongo stack Interview questions and their answers.
Starred by 3.7K users
Forked by 883 users
Languages JavaScript
LunarScents's DevLog
lunarscents.github.io › 2019 › 06 › 05 › classes
Day 4: Classes - LunarScents's DevLog
September 20, 2022 - # 10Days of JS, Algorithm, ES6, HackerRank, JavaScript ... 10Days of JS 30Days of Code Algorithm Android Debug Bridge Android Debugging Basic for Web Blog Browsers Chrome으로 Android Debugging 방법 Correctness and the Loop Invariant hackerrank solution in javascript Debug Tools Development Environment in MacOS ES6 Front-End Funny String of Algorithms hackerrank solution in javascript Funny String of Algorithms hackerrank solution in typescript Generator Github Page with Hexo Github Pages HackerRank HackerRank in a String of Algorithms hackerrank solution in javascript HackerRank in a Strin
GitHub
github.com › bstashchuk › JavaScript-and-ES6-Challenges
GitHub - bstashchuk/JavaScript-and-ES6-Challenges: Repository for the course https://www.udemy.com/javascript-and-es6-challenges
Repository for the course https://www.udemy.com/javascript-and-es6-challenges - bstashchuk/JavaScript-and-ES6-Challenges
Starred by 35 users
Forked by 73 users
LunarScents's DevLog
lunarscents.github.io › 2019 › 06 › 06 › inheritance
Day 5: Inheritance - LunarScents's DevLog
September 2, 2022 - # 10Days of JS, Algorithm, ES6, HackerRank, JavaScript ... 10Days of JS 30Days of Code Algorithm Android Debug Bridge Android Debugging Basic for Web Blog Browsers Chrome으로 Android Debugging 방법 Correctness and the Loop Invariant hackerrank solution in javascript Debug Tools Development Environment in MacOS ES6 Front-End Funny String of Algorithms hackerrank solution in javascript Funny String of Algorithms hackerrank solution in typescript Generator Github Page with Hexo Github Pages HackerRank HackerRank in a String of Algorithms hackerrank solution in javascript HackerRank in a Strin
Woven Teams
woventeams.com › home › demand articles › javascript coding interview questions: resources and challenges
JavaScript Coding Interview Questions: Resources and Challenges - Woven Teams
January 31, 2024 - The challenges that Hackerrank offers, ready-made, are organized around the most common engineering topics.
GitHub
github.com › topics › hackerrank-javascript
hackerrank-javascript · GitHub Topics · GitHub
Hackerrank solutions in JavaScript (ES6+).
HackerRank
hackerrank.com › challenges › js10-class › forum
Day 4: Classes Discussions | Tutorials | HackerRank
March 16, 2023 - Practice using JavaScript classes.
Top answer 1 of 3
2
The problem statement reads:
Include a prototype method in class, which returns a message(msg) "car name(name) had travelled for distance(distance) miles".
Which should mean that the method actually uses return instead of printing to the console.
class Car {
constructor(name, distance) {
this.name = name;
this.distance = distance;
}
lengthMiles() {
return `${this.name} had travelled for ${this.distance} miles`;
// ^^^^^^ --------------------------- using a return statement
} // |
} // |
// |
var car = new Car('Audi', 100);// |
var msg = car.lengthMiles(); // |
console.log(msg);// <----------------- printing the message here
2 of 3
2
class Car {
constructor(name, distance) {
this.name = name;
this.distance = distance;
}
carDistance() {
return `${this.name} had travelled for ${this.distance} miles`;
}
}
let Car1 = new Car('Audi', 100);
const msg = Car1.carDistance();
console.log(msg);
module.exports = {msg}
GitHub
github.com › NewIncome › JS-hackerRank-challenges
GitHub - NewIncome/JS-hackerRank-challenges: Compilation of coding challenges from the HackerRank site, solved with the Javascript (ES6) language. · GitHub
Compilation of coding challenges from the HackerRank site, solved with the Javascript (ES6) language. - NewIncome/JS-hackerRank-challenges
Author NewIncome
GitHub
github.com › devika-be › HackerRank-10-Days-of-Javascript › blob › main › Day 5: Template Literals.sql
HackerRank-10-Days-of-Javascript/Day 5: Template Literals.sql at main · devika-be/HackerRank-10-Days-of-Javascript
#Problem Link : https://www.hackerrank.com/challenges/js10-template-literals/problem · · #Ans : · function sides(literals, ...expressions) { // ES6 allows destructuring of arrays into multiple variables · const [a, p] = expressions; // Perform this operation only once and assign to variable ·
Author devika-be
GitHub
github.com › onemolegames › Hackerrank-Solutions
GitHub - onemolegames/Hackerrank-Solutions · GitHub
Starred by 10 users
Forked by 12 users
Languages JavaScript 95.9% | HTML 3.6% | CSS 0.5%
GitHub
github.com › yeonjuan › hackerrank-js
GitHub - yeonjuan/hackerrank-js: Hackerrank problem solving with javascript · GitHub
Starred by 15 users
Forked by 3 users
Languages JavaScript