This is where the content of the page lives The HTML gives the page structure and adds semantics.
The CSS enhances the HTML page with rules that state how the HTML content is presented (backgrounds, borders, box dimensions, colors, fonts, etc.)
This is where we can change how the page behaves, adding interactivity.
You may see JavaScript in the HTML between opening tags
is a series of instructions that a computer can follow one-by-one.
JavaScript is case sensitive so hourNow means something different to HourNow or HOURNOW.
to explain what your code does.They help make your code easier to read and understand. This can help you and others who read your code.
A script will have to temporarily store the bits of information it needs to do its job. It can store this data in variables
A variable is a good name for this concept because the data storedin a variable can change (or vary)each time a script runs.
### Data Type:
It is best to keep JavaScript code in its own JavaScript file. JavaScript files are text files (like HTML pages and CSS style sheets), but they have the . j s extension. and Put its name with extension in the code
You may see JavaScript in the HTML between opening tags
Thank You Sukina AbuHammad