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.
18 lines
293 B
18 lines
293 B
1 year ago
|
async function f() {}
|
||
|
const g = async function () {};
|
||
|
const a = {
|
||
|
async f() {}
|
||
|
};
|
||
|
const h = async () => {};
|
||
|
async function j() {
|
||
|
(await g()).a;
|
||
|
await g().a;
|
||
|
return await f();
|
||
|
}
|
||
|
async function k() {
|
||
|
return await (obj = Promise.resolve(1));
|
||
|
}
|
||
|
async function l() {
|
||
|
await (() => 1);
|
||
|
}
|