We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64e1646 commit 62f270eCopy full SHA for 62f270e
1 file changed
1-js/06-advanced-functions/07-new-function/article.md
@@ -55,9 +55,9 @@ func();
55
function getFunc() {
56
let value = "test";
57
58
- *!*
+*!*
59
let func = new Function('alert(value)');
60
- */!*
+*/!*
61
62
return func;
63
}
@@ -71,9 +71,9 @@ getFunc()(); // ошибка: значение не определено
71
72
73
74
75
let func = function() { alert(value); };
76
77
78
79
0 commit comments