Functions

Call a Function Function Declarations Function Expressions Parameter – A variable in which the function stores information passed to it.Argument – A […]

Read More

Conditionals: Short Circuit Evaluation

It means stopping code execution as soon as possible depending on the value. Logical operators like && and || can be used to control […]

Read More

Conditionals: Switch & Ternary

Switch Statement switch, case, default, and break.This switch statement is used for multiple branching logic, where all cases are contained inside one block […]

Read More

Conditionals: Basics

Booleans true or falseThere are other data types that can yield true or false values on comparisonTrue: true, 1, ‘Hello’False: false, 0, ” Operators Double Equals vs. Triple […]

Read More

Numbers

Parsing Numbers inside strings Math Object

Read More

Strings

Escape characters \n \” \’ Length fullName is an objectlength is a property Letter Casing String.prototype.toLowerCase();toLowerCase() is a method Concatenation [make-shout.js]

Read More

Intro

Statements run in the DOM sequentially, one after the other.Every browser has something called a JavaScript interpreter built into it. […]

Read More

Cheat Sheet #1

  jQuery Fundamentals     $, document, .ready, function(){} Basic Selectors               *, tag, id, class, .css […]

Read More
Comments Off on Cheat Sheet #1