Skip to content

Commit d10cb6d

Browse files
committed
Update
1 parent 2546787 commit d10cb6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ <h1>JavaScript Garden</h1>
112112
the use of property names that would otherwise lead to a syntax error.</p>
113113
</section><section><header><h3>Deleting properties</h3></header>
114114
<p>The only way to actually remove a property from an object is to use the <code>delete</code>
115-
keyword; setting the property to <code>undefined</code> or <code>null</code> does <strong>only</strong> remove the
115+
operator; setting the property to <code>undefined</code> or <code>null</code> does <strong>only</strong> remove the
116116
value associated with the property, but not the key.</p>
117117
<pre><code>var obj = {
118118
bar: 1,

0 commit comments

Comments
 (0)