๐ง under construction -> configurable
Last updated 2 years ago
Was this helpful?
JS โฉ value โฉ object โฉ property โฉ access โฉ delete
JS โฉ statement โฉ expression โฉ operator โฉ unary โฉ delete
(unary operator)
deletes configurable property / element.
delete <expr> // โญ๏ธ return true if `expr` is not a "property access expression"
table of operators
delete
can't delete normal variables. they are considered unqualified
only deletes object's own/configurable properties, not inherited ones.
expects its operand to be an lvalue, if it is not an lvalue, the operator takes no action and returns true.
deleting an array element leaves a โholeโ in the array and does not change the arrayโs length (sparse array)
global variable/function as global object property
these properties cannot be deleted with delete
๐ global var / function is global object propertyโ๏ธ
unqualified identifier for delete.
delete of an unqualified identifier in strict modeโ๏ธ
can't delete variable/functionโ๏ธ
delete <expr> returns true if <expr> is not a property access expression.
<expr>
accidental global variable in sloppy modeโ๏ธ - can be deleted by delete.
strict mode
array elements can be deleted with the delete operator.
replit๏ผdelete in sloppy/strict mode
// 'use strict'; // โญ toggle sloppy/strict mode const { log } = console; // declarations let x = 3.14; // variable function f1() { log('f1'); } // function declaration let f2 = function() { log('f2'); } // function expression let fruits = ["Banana", "Orange"]; // array let person = { name: 'John', age: 18 }; // object // log [ // mode: // sloppy strict // ----------------------------------------------------------- delete x, // โ false โ SyntaxError x, // 3.14 delete f1, // โ false โ SyntaxError f1, // [Function: f1] delete f2, // โ false โ SyntaxError f2, // [Function: f2] delete fruits[1], // โ true โ true fruits, // ['Banana', <empty>] ['Banana', <empty>] delete person.age, // โ true โ true person, // { name: 'John' } { name: 'John' } ].forEach(x => console.log(x)); // โ SyntaxError: Delete of an unqualified identifier in strict mode.
JavaScript: The Definitive Guide โฉ
4.13.4 The delete Operator
6.4 Deleting Properties
itHome โฉ ไฝ ไธๅฏไธ็ฅ็ JavaScript ไบไธไบ โฉ
#Day12๏ผ็ Strict Mode ๅฆไฝๆฝๅฑใ้ๆๆผไบฎๆณใ(1)
delete operator
How can I unset a JavaScript variable?