Skip to content
Snippets Groups Projects
Commit 722ae82a authored by MARCHAL Aurelien's avatar MARCHAL Aurelien
Browse files

Exercice 4 : Echange de valeur avec tableau et question subsidiaire

parent b39be77f
No related branches found
No related tags found
No related merge requests found
......@@ -47,11 +47,12 @@ function deb3(xy: number[]): void {
xy[0] = xy[1];
xy[1] = tmp;
console.log(xy);
xy = [100, 200];
}
let xy = [10, 20];
deb3(xy);
console.log(xy);
\ No newline at end of file
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