Home > Software engineering >  How can I solve this issue with JavaScript?
How can I solve this issue with JavaScript?

Time:06-18

While I'm learning JavaScript a trouble occur. I didn't get alert message as output . But it is included in my code. Please help..

enter image description here

CodePudding user response:

You haven't specified the error you are receiving, but I think the issue will be that you have used tolowercase() when you need to use toLowerCase() (ironically note the difference in case)

  • Related