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.
- Host: GitHub
- URL: https://github.com/bk408/thatjsdude-javascript
- Owner: bk408
- Created: 2024-05-16T15:22:06.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-05-20T17:54:53.000Z (over 1 year ago)
- Last Synced: 2025-01-21T08:13:01.093Z (11 months ago)
- Language: JavaScript
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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"?