java script questions
1.Print all prime numbers between 1 and 200.
2.Generate the first n Fibonacci numbers using while loop
3.Create a function that returns the factorial using recursion.
4.Create a function that finds the sum of all odd numbers in an array.
5. Basic JavaScript Quiz App using plain HTML + CSS + JavaScript. It:
a. Shows one question at a time
b. Uses radio buttons for answers
c. Has a Next button
d.Displays the final score at the end
6.To-Do List Manager built with HTML + CSS + JavaScript, implementing:
a. Add tasks
b.Edit tasks
c.Delete tasks
d. Mark tasks as completed
e. Dynamic DOM updates using event handling and array
7. a complete JavaScript Calculator project that includes:
a. Basic operations: +, -, ×, ÷
b. Button-based UI (you can also extend to keyboard input)
c. Decimal support
d. Clear / Reset functionality
e. Simple and responsive layout
8.Number Guessing Game using HTML + JavaScript, covering:
a. Random number between 1–100
b. User inputs a guess
c. Gives hints ("Too high", "Too low")
d. Tracks number of attempts
e. Displays success message when guessed correctly