🌐
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
2,750+ JavaScript solutions to various LeetCode problems - JoshCrozier/leetcode-javascript
Starred by 323 users
Forked by 57 users
Languages   JavaScript
🌐
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.
🌐
YouTube
youtube.com › playlist
Leetcode problems in Javascript - YouTube
Share your videos with friends, family, and the world
🌐
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.
🌐
Medium
medium.com › @aminakbari.dev › top-10-must-solve-javascript-leetcode-problems-for-interviews-5cc56f8852c9
Top 10 Must-Solve JavaScript LeetCode Problems for Interviews | by Amin Akbari | Medium
October 29, 2024 - One of the most effective ways to enhance your coding skills and problem-solving abilities is by practicing LeetCode problems. Here’s a curated list of ten essential JavaScript problems that every developer should tackle before an interview, along with solutions and explanations.
Find elsewhere
🌐
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
🌐
Udemy
udemy.com › development › programming languages › competitive programming
Mastering LEETCODE with Easiest Explaination (Javascript) | Udemy
SO join this course and learn proramming and how to solve leetcode problems using javascript
Rating: 4.6 ​ - ​ 47 votes
🌐
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).
🌐
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?

🌐
GitHub
github.com › mardavsj › Leetcode-JavaScript
GitHub - mardavsj/Leetcode-JavaScript: This repo contains the solutions of the javascript problems available on leetcode.
It consists the solutions of both easy as well as medium level javascript questions.
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.