Skip to content

Commit 351f4d2

Browse files
committed
wording修改
1 parent 0b64c1d commit 351f4d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

chapter1.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,12 +131,12 @@ JSLint(<http://jslint.com> )是一个JavaScript代码质量检测工具,
131131
console.log("test", 1, {}, [1,2,3]);
132132
console.dir({one: 1, two: {three: 3}});
133133

134-
当你在控制台输入内容时,不必使用console.log()。为了避免混乱,有些代码片段仍然会使用console.log()进行输出,并假设所有的代码片段都使用控制台来运行:
134+
当你在控制台输入内容时,不必使用`console.log()`。为了避免混乱,有些代码片段仍然会使用`console.log()`进行输出,并假设所有的代码片段都使用控制台来运行:
135135

136136
window.name === window['name']; // true
137137

138138
这和下面这种用法意思一样:
139139

140140
console.log(window.name === window['name']);
141141

142-
这段代码在控制台中输出为true
142+
这段代码在控制台中输出为`true`

0 commit comments

Comments
 (0)