From 0bc42620b9406dd5a9d427e4869e91ecda656dd4 Mon Sep 17 00:00:00 2001 From: mhizterkeyz <38281402+mhizterkeyz@users.noreply.github.com> Date: Sun, 17 Jan 2021 14:39:09 +0100 Subject: [PATCH] syntax fix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1ef68a0..0380b3a 100644 --- a/README.md +++ b/README.md @@ -182,7 +182,7 @@ Sets a variable back to its initial value or state. ```js const initialFruits = 5 -const fruits = initialFruits +let fruits = initialFruits setFruits(10) console.log(fruits) // 10