Skip to content
Snippets Groups Projects
Commit 95373b1e authored by MALLINGER Robin's avatar MALLINGER Robin
Browse files

ajout du fichier exo2

parent 02f17039
No related branches found
No related tags found
No related merge requests found
exo2.ts 0 → 100644
function deb1(): number {
let j = 200;
let tab: number[] = [];
for (let i = 0; i < 10; i++) {
j -= 10;
tab[i] = j;
}
console.log(tab);
return j;
}
console.log(deb1());
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment