I decided to study JS, only I got stuck. I just can not understand the logical operator. The task is:

Write a code that returns true if in the line "I'm coding like a champ!" more than 10 characters. You can simply write the condition in the editor and it will be appreciated for you.

Explain how unfamiliar.

Thank you in advance.

    1 answer 1

    They write, they say, write like this:

     "I'm coding like a champ!".length>10 

    and immediately get true .

    • Thank. For some reason I decided that I should add the catch if. - rmnbnd