How to lowercase a string in JavaScript

Asked 2 years ago, Updated 2 years ago, 41 views

I'd like to change the string to lowercase, how can I do that? For example, if it's "Your Name", I want to change it to "Your Name"Yo

javascript string

2022-09-22 14:10

1 Answers

"Your Name".toLowerCase();


2022-09-22 14:10

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.