Son CV dans un terminal web en Javascript!
https://terminal-cv.gregandev.fr
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
414 B
21 lines
414 B
for (let a in b) {}
|
|
for (let [a, b] in c) {}
|
|
for (let {a, b} in c) {}
|
|
for (let {a: b, c} in d) {}
|
|
for (let a of b) {}
|
|
for (var [a, b] of c) {}
|
|
for (let {a, b} in c) {}
|
|
for (let {a: b, c} in d) {}
|
|
for (let i = 0, {length} = list; i < length; i++) {}
|
|
for (; ; ) {}
|
|
for (function () {
|
|
const i = 0;
|
|
}; ; ) {}
|
|
for (() => {
|
|
const i = 0;
|
|
}; ; ) {}
|
|
async function test() {
|
|
for await (const x of xs) {
|
|
x();
|
|
}
|
|
}
|
|
|