The difference between assert.equal and assert.deepEqual in Javascript testing with Mocha?
Why do arrays not compare the way other values do (e.g. 1==1) Numbers, strings, booleans, null, and undefined are values, and are compared as you might expect. 1 == 1, ‘a’ == ‘a’, and so on. The difference between === and == in the case of values is that == will attempt to perform type … Read more