Re Circuit Playground - Lesson 4 - Lock /Unlock App
I have an advanced student who is using code /input for this activity - his code is pasted below. There are no coding errors, however the code is not running how he would like it to. Even if the two arrays are equal it never returns as true.
var pass = ;
var key = [“1”,“2”];
var locked = true;
Hi there! I suspect the culprit is the way the student is making the comparison:
if(pass == key){
I suspect what you and your student hope is happening is that Javascript is comparing each value in the array and letting you know if all the values are the same. The reality isn’t the same because of how arrays are represented in Javascript as Objects (which is an advanced topic not covered in CSD).
Instead, one solution is to acutally do this yourself: compare each element of the arrays and check if they’re the same. Here’s some algorithmic psuedocode for how that could look:
If pass and key have differnet lengths:
False
//If I made it here: I know they have the same length, so I can use a loop
for each element in pass:
if pass[i] is not equal to key[i]:
False
//If I made it here: the arrays are the same length and all the values are the same
True
There are also lots of resources online on this topic (here’s one for example: Comparing Arrays in JavaScript – How to Compare 2 Arrays in JS). You could encourage your student to explore answers online too. Some of these will be above the content in the course, but that’s also a right-of-passage for coders: looking up code online and trying to decipher how it works to solve a problem you have. Lean into the unpuzzling and deciphering of using online resources to find solutions!