From 68653c76eec49304de27709d75375adea60400f0 Mon Sep 17 00:00:00 2001 From: Anton Krekotun <36279559+tonchique@users.noreply.github.com> Date: Fri, 16 Oct 2020 16:07:39 +0300 Subject: [PATCH] fix typo --- content/questions/delete-object-properties/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/questions/delete-object-properties/index.md b/content/questions/delete-object-properties/index.md index 95701e2d..7df010c4 100644 --- a/content/questions/delete-object-properties/index.md +++ b/content/questions/delete-object-properties/index.md @@ -39,4 +39,4 @@ You can use the JavaScript [delete operator](https://developer.mozilla.org/en-US Both option A and D will give a TypeError, because neither `car.delete` nor `car.color.delete` is a function. -Option C will give a ReferenceError becuase `color` is not defined. However, `delete car['color']` will work - notice the quotation marks around `color`. +Option C will give a ReferenceError because `color` is not defined. However, `delete car['color']` will work - notice the quotation marks around `color`.