An open API service indexing awesome lists of open source software.

https://github.com/bk408/thatjsdude-javascript

This repository contains the most important JavaScript coding questions, sourced from thatjsdude.com.
https://github.com/bk408/thatjsdude-javascript

Last synced: 7 months ago
JSON representation

This repository contains the most important JavaScript coding questions, sourced from thatjsdude.com.

Awesome Lists containing this project

README

          

🚀 This repository contains the most important JavaScript coding questions, sourced from thatjsdude.com.

1. How would you verify a prime number?
2. How could you find all prime factors of a number?
3. How do get nth Fibonacci number?
4. How would you find the greatest common divisor of two numbers?
5. How would you remove duplicate members from an array?
6. How would you merge two sorted array?
7. How would you swap two numbers without using a temporary variable?
8. How would you reverse a string in JavaScript?
9. How would you reverse words in a sentence?
10. If you have a string like "I am the good boy". How can you generate "I ma eht doog yob"?