Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

Lesson 6 & Level 6

I really do not understand the instruction
by

1 Answer

iamabhishek
Here is the correct code:

let txt1 = 'Yokozuna';
let txt2 = 'Yokohama';

if(txt1.length == txt2.length) {
console.log("Both are same");
}

Login / Signup to Answer the Question.