//working with this element:
//<div id='item'></div>
//set a CSS style
var item = $('#item');
item.css('font-size', 24);
//<div id='item' style="font-size:24px"></div>
//get a CSS style
item.css('font-size');
// > "24px"
function constructObj() {};
var realObj = new constructObj();
realObj instanceof constructObj;
// > true
realObj instanceof Array;
// > false
realObj instanceof Object;
// > true