-
Notifications
You must be signed in to change notification settings - Fork 0
Basic Java Script Notes.
Ahmed Ayman edited this page Jun 30, 2017
·
2 revisions
- JS strings are immutable, means that they cannot be altered once created.
- 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
- HTML & CSS.
- Responsive web design with BootStrap.
- JQuery Notes.
- intro to JS
- OOP JS
- basic algorithm scripting.
- JSON API's and AJAX.