java script

             

JavaScript  syllabus

---------------------------------------------------

  1. JS Engine Architecture
  2. How to declare the variables in JS
  3. Keywords
  4. Hoisting
  5. Global Execution Context (GEC)
  6. Data Types
  7. Type Casting
  8. DOM (Document Object Model)
  9. Browser Object Model (BOM)
  10. Promise
  11. Async and Await
  12. Storage
  13. JSON
  14. Prototype






1. What are some advantages of using External JavaScript?

External JavaScript is the JavaScript Code (script) written in a separate file with the extension.js, and then we link that file inside the <head> or <body> element of the HTML file where the code is to be placed. 

Some advantages of external javascript are

  1. It allows web designers and developers to collaborate on HTML and javascript files.
  2. We can reuse the code.
  3. Code readability is simple in external javascript

No comments:

Post a Comment