Skip to content

Instantly share code, notes, and snippets.

@alexsoyes
Created June 20, 2023 10:05
Show Gist options
  • Save alexsoyes/8408eb3dab552c54293ed84f62e77075 to your computer and use it in GitHub Desktop.
Save alexsoyes/8408eb3dab552c54293ed84f62e77075 to your computer and use it in GitHub Desktop.
Exemple TypeScript : Matrice
const matrix: number[][] = [
[1, 2, 3],
[4, 5, 6],
[7, 8, 9]
];
console.log(matrix[1][2]); // Output: 6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment