JavaScript Repeated Question: Dynamic Funtional Interactive
Javascript is a proramming language makes our website dynamic , interactive and functional. ** what is Dynamic** The content on the page can change automatically without refreshing the page. exaples: -In cricket live on tv the score is automatically updated. -The clock on tv,websites. Dynamic Example Live Clock Loading time... function updateClock() { const now = new Date(); document.getElementById("clock").innerText = now.toLocaleTimeString(); } setInterval(updateClock, 1000); what is interactive js makes this happen by responding to our acions(called events) example: -clicking buttons -typing a form and gives some alert messages. Interactivejs Interactive js is a proramming language used to make our webpage Interactive js makes this happen by responding to our actions like clicking buttons typing a form gives alert messages Click me function interactive(){ alert("Hello everyone"); } what is functional the website can do real tasks using js example : -calculater that gives correct answer - In form that checks email is valid before submitting. - clock example from dynamic also for functional we will meet tomorrow with intersting topics . stay tune! Guys

Javascript is a proramming language makes our website dynamic , interactive and functional.
** what is Dynamic**
The content on the page can change automatically without refreshing the page.
exaples:
-In cricket live on tv the score is automatically updated.
-The clock on tv,websites.
Dynamic Example
Live Clock
Loading time...
what is interactive
js makes this happen by responding to our acions(called events)
example:
-clicking buttons
-typing a form and gives some alert messages.
Interactivejs
Interactive
js is a proramming language used to make our webpage Interactive
js makes this happen by responding to our actions like clicking buttons typing a form gives alert messages
what is functional
the website can do real tasks using js
example :
-calculater that gives correct answer
- In form that checks email is valid before submitting.
- clock example from dynamic also for functional
we will meet tomorrow with intersting topics . stay tune! Guys