Answer the question
In order to leave comments, you need to log in
Why are arrays not equal in js?
Let's say we have a function, on the input of which we expect to see the text
function parseRoomName(text) {
var auditoryName = text.split('');
}
function parseRoomName(text) {
var auditoryName = text.split('');
return auditoryName
}
parseRoomName('K-200')
? ["K", "-", "2", "0", "0"]
function parseRoomName(text) {
var auditoryName = text.split('');
for (var i = auditoryName.length - 1; i >= 0; i--) {
if (auditoryName[i] == '-') {
auditoryName.splice(i,1);
}
}
return auditoryName
}
parseRoomName('K-200')
, and we get We ["K", "2", "0", "0"]
parseRoomName('K200')
also get ["K", "2", "0", "0"]
parseRoomName('K-200') == parseRoomName('K200')
, we get false
parseRoomName('K-200').length == parseRoomName('K200').length
, then we get true
parseRoomName('K-200')[1]== parseRoomName('K200')[1]
, then we also get true
Answer the question
In order to leave comments, you need to log in
If you want to compare arrays, then write a function that first compares the length of the array, and then bypasses the arrays and compares the elements manually.
Think link:
stackoverflow.com/questions/7837456/how-to-compare...
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question