Skip to content

Latest commit

 

History

History
25 lines (13 loc) · 839 Bytes

File metadata and controls

25 lines (13 loc) · 839 Bytes

Summury

THE ABC OF PROGRAMMING

  • ** It's best to keep JavaScript code in It's own file .**

  • ** The HTML <script> element is used in HTML pages to tell the browser to load the Javascript file . **

  • ** If you view the source code of the page in the browser , the JavaScript will not have changed the HTML . ** image

Summury

The basic JAVAScript instructions

  • ** A Script : is a series of instructions that a computer can follow one by one . **
  • ** The comment is to explain what the code does . **

  • ** Variable : place to store data temporilly . **

  • ** Before use a variable , you need to announce that you want to use it . **

image