--- title: Identity matrix id: 5a23c84252665b21eecc7eb1 challengeType: 5 forumTopicId: 302290 --- ## Description
An identity matrix is a square matrix of size \( n \times n \), where the diagonal elements are all 1s (ones), and all the other elements are all 0s (zeroes).
## Instructions
Write a function that takes a number n as a parameter and returns the identity matrix of order \( n \times n \).
## Tests
```yml tests: - text: idMatrix should be a function. testString: assert(typeof idMatrix=='function'); - text: idMatrix(1) should return an array. testString: assert(Array.isArray(idMatrix(1))); - text: idMatrix(1) should return [ [ 1 ] ]. testString: assert.deepEqual(idMatrix(1),results[0]); - text: idMatrix(2) should return [ [ 1, 0 ], [ 0, 1 ] ]. testString: assert.deepEqual(idMatrix(2),results[1]); - text: idMatrix(3) should return [ [ 1, 0, 0 ], [ 0, 1, 0 ], [ 0, 0, 1 ] ]. testString: assert.deepEqual(idMatrix(3),results[2]); - text: idMatrix(4) should return [ [ 1, 0, 0, 0 ], [ 0, 1, 0, 0 ], [ 0, 0, 1, 0 ], [ 0, 0, 0, 1 ] ]. testString: assert.deepEqual(idMatrix(4),results[3]); ```
## Challenge Seed
```js function idMatrix(n) { } ```
### After Test
```js let results=[[ [ 1 ] ], [ [ 1, 0 ], [ 0, 1 ] ], [ [ 1, 0, 0 ], [ 0, 1, 0 ], [ 0, 0, 1 ] ], [ [ 1, 0, 0, 0 ], [ 0, 1, 0, 0 ], [ 0, 0, 1, 0 ], [ 0, 0, 0, 1 ] ]] ```
## Solution
```js function idMatrix(n) { return Array.apply(null, new Array(n)).map(function (x, i, xs) { return xs.map(function (_, k) { return i === k ? 1 : 0; }) }); } ```