-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy path0-console.js
More file actions
47 lines (37 loc) · 782 Bytes
/
0-console.js
File metadata and controls
47 lines (37 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
'use strict';
console.clear();
console.log('log');
const obj = {
name: 'Marcus Aurelius',
city: 'Roma',
born: 121,
children: [
{
name: 'Vibia Aurelia Sabina',
city: 'Sirmium',
born: 170,
},
{
name: 'Annia Cornificia Faustina Minor',
city: 'Roma',
born: 160,
},
],
};
Object.defineProperty(obj, 'childCount', {
enumerable: false,
writable: false,
value: 13,
});
console.log({ obj });
console.dir({ obj });
console.dir({ obj }, { showHidden: true, depth: 20, colors: true });
console.error('Error');
console.time('Loop time');
const arr = [];
for (let i = 0; i < 10000; i++) {
arr.push(i);
}
console.timeEnd('Loop time');
console.trace('Trace here');
console.log('\n' + Object.keys(console).join(', '));