This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const user = { | |
| name: 'Ashish Kumar', | |
| website: 'https://KumarAshish.com', | |
| address: { | |
| city: 'New Delhi', | |
| pin: '10005', | |
| address1: 'some address details', | |
| address2: 'more address details', | |
| state: 'Delhi' | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| setInterval(function () { | |
| [].forEach.call(document.body.querySelectorAll("*"), function (a) { | |
| a.style.outline = "20px dotted #" + (~~(Math.random() * (1 << 12))).toString(16) | |
| }, 5); | |
| }, 100); |