I need an small help I've a scenario where I need to compare array of boolean and return true
or false
const val = [true] != [true]
console.log(val)
true
which isn't correct I need it should return false
. Any alternative to toString()
method