CpSc 217 - Structured and Dynamic Web Programming
The notes found on these pages all reference the textbook given above. Unless otherwise stated, the citation of the information on these web pages is that text.
This chapter is a partial Review from 130
Operators
var o = {x:1, y:2}; delete o.x; // delete property x. returns true delete o; //can't delete a declared variable. returns false