Console groupEnd()
示例
使用 console.groupEnd() 结束消息组
console.log("Hello world!");
console.group();
console.log("Hello again, this time inside a group!");
console.groupEnd();
console.log("and we are back.");
自己尝试 »
描述
The groupEnd()
ends a message group.
语法
console.groupEnd()
浏览器支持
console.groupEnd()
is supported in all modern browsers
Chrome | Edge | Firefox | Safari | Opera | IE |
是 | 是 | 是 | 是 | 是 | 11 |