Skip to content

Basic Java Script Notes.

Ahmed Ayman edited this page Jun 30, 2017 · 2 revisions

just some definitions and notes.

  • JS strings are immutable, means that they cannot be altered once created.

JS objects

  • it has properties and methods.
  • you can access a prop by dot '.' --> obj.name ..... or by a brackets --> obj["name"] this one with the spaced props.
  • to delete a prop .. delete obj.prop
  • obj.hasOwnProperty() -> check out if it has this prop.
  • access many nasted obj -> obj1.objNasted1.objNasted2["prop"].
  • Math.floor(Math.random()*x) random between 0 , x
  • regEx : - /exp/gi ...... global ignore line ........ - /\d++/g 3 digits ....\f \n \s \S

Free Code Camp.

Front End Development Certification

  1. HTML & CSS.
  2. Responsive web design with BootStrap.
  3. JQuery Notes.
  4. intro to JS
  5. OOP JS
  6. basic algorithm scripting.
  7. JSON API's and AJAX.

Udacity Full stack

  1. Data bases with Python.

Microsoft Professional Program

others

Clone this wiki locally