Created
July 7, 2023 10:55
-
-
Save rd13/c926d2a1331b7d0aaf545e243209dff1 to your computer and use it in GitHub Desktop.
js test
This file contains 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 array = [...new Array(10000,)].map((_,i) => i); |
This file contains 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 a=array[Symbol.iterator]() | |
let b=a.next() | |
do; | |
while(!b.done) |
This file contains 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 b = 234234324234; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment