Added backticks for a keyword.

Added backticks for the “this” keyword.
This commit is contained in:
bharathkkb 2015-10-16 11:41:52 -07:00
parent 91218b4fce
commit 80bb3a0642

View File

@ -413,7 +413,7 @@ var doubler = product.bind(this, 2);
doubler(8); // = 16
// When you call a function with the `new` keyword, a new object is created, and
// made available to the function via the this keyword. Functions designed to be
// made available to the function via the `this` keyword. Functions designed to be
// called like that are called constructors.
var MyConstructor = function(){