This commit is contained in:
Philippe Torrel
2026-07-03 10:22:02 +02:00
parent f0dd230fe9
commit 9a1be89bd8
27 changed files with 522 additions and 10 deletions

View File

@@ -0,0 +1,11 @@
const sayHello = () => {
console.log('Say hello');
};
const iv = setInterval(sayHello, 500);
const double = (n, i) => {
return n * 2 + i;
};
const numbers = [1, '2', 3].map(double);