Juan EstradaMy Journey to Learning Javascript: Notes- jQUERYjQuery is a library used to simplify almost every common aspect of javascript development. The most common way to use jQuery is the…Jun 4, 2015Jun 4, 2015
Juan EstradaMy Journey to Learning Javascript: Notes- AJAXAJAX is the ability for client side javascript to request and receive data from a server without the need to reload the entire page. With…Jun 4, 20151Jun 4, 20151
Juan EstradaMy Journey to Learning Javascript: Notes- Javascript Object Notation Specification ( JSON)JSON, an data-interchange format, is based on a subset of the Javascript programming language that easily parses into JavaScript objects…Jun 3, 2015Jun 3, 2015
Juan EstradaMy Journey to Learning Javascript: Notes- DOM ScriptingUnlike the Browser Object Model(BOM), the Document Object Model(DOM) deals only with the web page/html page. It allows users in any browser…Jun 3, 2015Jun 3, 2015
Juan EstradaMy Journey to Learning Javascript: Notes- Browser Object Model (BOM)You can also write scripts to the web browser and access its objects. Like javascript, the browser itself also has objects and methods. Two…Jun 3, 2015Jun 3, 2015
Juan EstradaMy Journey to Learning Javascript: Notes- Regular ExpressionsRegular expressions are created starting and ending with a forward slash (/) marking the beginning and end, as follows:Jun 3, 2015Jun 3, 2015
Juan EstradaMy Journey to Learning Javascript: Notes- String Manipulation.Split()Jun 3, 2015Jun 3, 2015
Juan EstradaMy Journey to Learning Javascript: Notes- Increment / decrement operatorsMath operators can be used to used to increment or decrement value.Jun 3, 2015Jun 3, 2015
Juan EstradaMy Journey to Learning Javascript: Notes- ObjectsUsing real world examples, objects can be defined as a thing, like a car. The characteristics of this car such as the color and engine size…Jun 3, 2015Jun 3, 2015
Juan EstradaMy Journey to Learning Javascript: Notes- FunctionsFunctions are used to enclose a block of code that performs a certain task. Functions are created using (function) followed by the…Jun 3, 2015Jun 3, 2015