Skip to content
Snippets Groups Projects
Commit c92a38f3 authored by FUSCIELLO Baptiste's avatar FUSCIELLO Baptiste
Browse files

ajout de l'exercice 5

parent 456377c0
No related branches found
No related tags found
No related merge requests found
function deb3(xy: number []): void {
let tmp = xy[0];
xy[0] = xy[1];
xy[1] = tmp;
xy = [100, 200];
console.log(xy);
}
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