LeetCode
leetcode.com › problemset › javascript
LeetCode - The World's Leading Online Programming Learning Platform
Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.
GitHub
github.com › JoshCrozier › leetcode-javascript
GitHub - JoshCrozier/leetcode-javascript: 2,750+ JavaScript solutions to various LeetCode problems
Starred by 323 users
Forked by 57 users
Languages JavaScript
Videos
Solve LeetCode JavaScript Interview Question & Build Logic
Javascript Leetcode Problems | Day 1 | Learn Coding ...
LeetCode problem 284 solution #leetcode #javascript #coding
13:51
LeetCode solutions explanation JavaScript. Problem #20 - Valid ...
11:44
LeetCode solutions explanation JavaScript. Problem #7 - Reverse ...
15:52
LeetCode solutions explanation JavaScript. Problem #1 - Two Sum ...
LeetCode
leetcode.com › discuss › general-discussion › 3406484 › new-new-problem-category-javascript-problems
🆕 New problem category: JavaScript problems - Discuss - LeetCode
LeetCode is excited to announce the launch of a brand new problem category: JavaScript problems.
Medium
medium.com › @ilatif.bwp › key-javascript-concepts-i-mastered-during-leetcodes-30-day-challenge-6385604be971
Key JavaScript Concepts I Mastered During LeetCode’s 30-Day Challenge | by Imran Latif | Medium
June 5, 2023 - Challenge: https://leetcode.com/problems/check-if-object-instance-of-class/ Consider following code. ... What do you think the output would be? If your answer is true, then congratulations, your answer is incorrect. You might be wondering, how so? Essentially, instanceof in JavaScript determines whether an object is an instance of a particular class.
Baffinlee
baffinlee.com › leetcode-javascript
LeetCode javascript solutions
Difficulty: · Medium · Array · Hash Table · String · Dynamic Programming · Backtracking · Depth-first Search · Two Pointers · Linked List
LeetCode
leetcode.com › problems › majority-element › solutions › 2046029 › javascript-solution-daily-leetcode-practice
Majority Element - LeetCode
Can you solve this real interview question? Majority Element - Given an array nums of size n, return the majority element. The majority element is the element that appears more than ⌊n / 2⌋ times.
LeetCode
leetcode.com › problems › plus-one › discuss › 24353 › Simple-JavaScript-Solution
Plus One - LeetCode
Plus One - You are given a large integer represented as an integer array digits, where each digits[i] is the ith digit of the integer. The digits are ordered from most significant to least significant in left-to-right order.
GitHub
github.com › everthis › leetcode-js
GitHub - everthis/leetcode-js: 2000+ javascript solutions of leetcode problems.
2000+ javascript solutions of leetcode problems. Contribute to everthis/leetcode-js development by creating an account on GitHub.
Starred by 718 users
Forked by 227 users
Languages JavaScript
LeetCode
leetcode.com › problems › add-strings › discuss › 211086 › javascript-question
Add Strings - LeetCode
Add Strings - Given two non-negative integers, num1 and num2 represented as string, return the sum of num1 and num2 as a string. You must solve the problem without using any built-in library for handling large integers (such as BigInteger).
LeetCode
leetcode.com › discuss › interview-question › 4629773 › 30-must-do-Javascript-questions-for-Interviews
30 must do Javascript questions for Interviews - Discuss - LeetCode
Implement a function that converts a Javascript value into a JSON string.
Maddhruv
maddhruv.github.io › leetcode-blind-75-javascript
LeetCode Blind 75 Problems in JavaScript | leetcode-blind-75-javascript
Solutions of LeetCode Blind 75 Problems in JavaScript
GitHub
github.com › jyxia › LeetCode-JavaScript
GitHub - jyxia/LeetCode-JavaScript: Solve LeetCode Problems in JavaScript. JavaScript solutions for LeetCode
Solve LeetCode Problems in JavaScript. JavaScript solutions for LeetCode - jyxia/LeetCode-JavaScript
Starred by 143 users
Forked by 63 users
Languages JavaScript 99.4% | Java 0.6%
DEV Community
dev.to › bugudiramu › javascript-arrays-hashmaps-mastering-the-most-asked-leetcode-problems-in-coding-interviews-5g5m
JavaScript Arrays & HashMaps: Mastering the Most Asked LeetCode Problems in Coding Interviews - DEV Community
December 17, 2023 - Each problem comes with straightforward solutions and explanations, using techniques like sets, maps, sorting, and iterations. Clear code snippets and simple algorithm breakdowns ensure understanding. Time and space complexities provided offer insights into solution efficiency. Whether you're starting out or refining your skills, this guide equips you with a versatile toolkit for LeetCode...
Reddit
reddit.com › r/learnjavascript › 30 days of javascript leetcode good for a beginner to learn?
r/learnjavascript on Reddit: 30 Days of Javascript LeetCode good for a beginner to learn?
August 1, 2024 -
I have some knowledge in Java,C,Python
I recently started watching Coding Train, and really found his topics (p5.js) interesting, so I decided i wanted to learn JS. From what he did in his videos, its not that different to Java, C or Python, most of the practices are similar.
However, i started the Leetcode 30 days of Javascript, am on the 2 question and already completly lost. JS suddenly seems so different to other languages, people are using weird syntax ive never seen before**.** one thing that tripped me off especially was "toBe: (val2) => { toBe: (val2) => {" on the 3rd question
Is that course good to learn JS?
Are ther any other resources to learn JS that you could recommend more?
Top answer 1 of 11
14
i havent looked at it, but leetcode is for experienced devs practicing for interviews
2 of 11
12
people saying they haven’t looked at it is crucial to answering your question. The Javascript specific questions on leetcode, like 30 days one , are actually a pretty good way to learn some of the nifty javascript things. I just completed it and can say that I have a much better understanding of Promises, Closures, async await syntax, event handling, timing AND more. It’s even got a typescript option to help you with that. Personally I think it’s good, as long as you really understand every single part of the solution. Coming from another language can be quite difficult, so it’s important to really hammer in the functional programming concepts
GitHub
github.com › mardavsj › Leetcode-JavaScript
GitHub - mardavsj/Leetcode-JavaScript: This repo contains the solutions of the javascript problems available on leetcode.
Starred by 16 users
Forked by 5 users
Languages JavaScript
Medium
medium.com › @aminakbari.dev › common-mistakes-in-javascript-leetcode-solutions-and-how-to-avoid-them-b75511e7a515
Common Mistakes in JavaScript LeetCode Solutions and How to Avoid Them | by Amin Akbari | Medium
November 3, 2024 - Before coding, list potential edge cases based on the problem description. Consider values like 0, null, undefined, and boundary values. Test your solution with these cases early to ensure robustness. If a function processes an array, handle cases where array.length === 0. This small check can prevent runtime errors and improve your code’s reliability. JavaScript’s == operator performs type coercion, which can lead to unexpected comparisons.