reading-notes

Reading Notes for Codefellows!


Project maintained by AlanYHung Hosted on GitHub Pages — Theme by mattgraham

Code 102

Reading 06-A

The ABC of Programming

  1. It is best practices to keep JavaScript codes in their own files with extension “.js”
  2. The <\script> element is used to load JavaScript into HTML Files
  3. JavaScript is meant to work with the HTML page and not change it

Basic JavaScript Instructions

  1. Multiple Data Types
    • Boolean
    • Number
    • Integer
    • String
  2. Refer to Starter-Class Folder on local machine to see Example JavaScript usage

<– Back