From 4fafc296669ffccab831bcd5d3407cf934f0d228 Mon Sep 17 00:00:00 2001 From: Federico <96267363+dalps@users.noreply.github.com> Date: Thu, 14 Mar 2024 02:40:43 +0100 Subject: [PATCH] Quote this keyword in explanation (#4862) --- javascript.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/javascript.html.markdown b/javascript.html.markdown index 08f1d8fb..4e7c5c09 100644 --- a/javascript.html.markdown +++ b/javascript.html.markdown @@ -405,7 +405,7 @@ myObj = { }; myObj.myFunc(); // = "Hello world!" -// What this is set to has to do with how the function is called, not where +// What `this` is set to has to do with how the function is called, not where // it's defined. So, our function doesn't work if it isn't called in the // context of the object. var myFunc = myObj.myFunc;