I have two lists, runtime_data
& cross_data
in javascript.
if(runtime_data.tuples.length !== cross_data.tuples.length) {
alert ("hello");
} else{
alert("equal");
}
I am able to check the length of both tuples. Is there any way to compare all the values of both tuples? (are they equal or unequal)
if(runtime_data.tuples.value!== cross_data.tuples.value){
alert ("hello");
}
else{
alert("equal");
}
Will the above syntax work in JavaScript?