Skip to content

Instantly share code, notes, and snippets.

@sebarmeli
Created March 14, 2012 12:09
Show Gist options
  • Save sebarmeli/2036058 to your computer and use it in GitHub Desktop.
Save sebarmeli/2036058 to your computer and use it in GitHub Desktop.
Delete in JS
(function(){
var a = 5;
delete a; // false
console.log(a); //prints 5
var obj = {
prop1 : "name1"
}
delete obj.prop1; //true
console.log(obj.prop1); // prints "undefined"
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment