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 4bf1b31 commit 88b64dbCopy full SHA for 88b64db
docs/features/console.md
@@ -11,7 +11,7 @@
11
12
`console`对象的浏览器实现,包含在浏览器自带的开发工具之中。以 Chrome 浏览器的“开发者工具”(Developer Tools)为例,可以使用下面三种方法的打开它。
13
14
-1. 按 F12 或者`Control + Shift + i`(PC)/ `Alt + Command + i`(Mac)。
+1. 按 F12 或者`Control + Shift + i`(PC)/ `Command + Option + i`(Mac)。
15
2. 浏览器菜单选择“工具/开发者工具”。
16
3. 在一个页面元素上,打开右键菜单,选择其中的“Inspect Element”。
17
docs/stdlib/object.md
@@ -405,10 +405,10 @@ obj.toLocaleString(obj) // "[object Object]"
405
406
```javascript
407
var person = {
408
- toString(): function () {
+ toString: function () {
409
return 'Henry Norman Bethune';
410
},
411
- toLocaleString(): function () {
+ toLocaleString: function () {
412
return '白求恩';
413
}
414
};
0 commit comments