Function
funcDecl();
funcExpr();
function funcDecl (){
alert ('function declaration');
}
var funcExpr = funciton () {
alert('function expression. ');
}
$.parseJSON()
var obj = jQuery.parseJSON( '{ "name": "John" }' );
alert( obj.name === "John" );
$.each
$("input").each(function (index, elem) {
total += Number($(elem).val());
});
.data()
$( "body" ).data( "foo", 52 );
$( "body" ).data( "bar", { myType: "test", count: 40 } );
$( "body" ).data( { baz: [ 1, 2, 3 ] } );
$( "body" ).data( "foo" );
$( "body" ).data();