JavaScript strings are a powerful tool for manipulating text and working with data. To get the most out of your strings, you'll want to familiarize...
For further actions, you may consider blocking this person and/or reporting abuse
Is Elon Musk really tweeted that?
No. It's just clickbait from the author. All their articles follow the same (deceptive) pattern to get attention.
It was sarcasm! But thanx for the reply! You do what you gatta do to, don't you?
Sorry. I'm really dense today. 😓
xDDD
Don't we use str.replace(/l/g, "L") to replace all l with L present in string.
It uses Regx which is great but can get complicated for beginners who aren't familiar with regular expressions, otherwise, it's ❤️
yeah but then shouldn't it say "replaces FIRST occurrence of the specified value..." !
there's a .replaceAll, but it's relatively new, i guess, so using regex is your best bet.
caniuse.com/?search=replaceAll
Support is good
Amazing stuff, truly liked it.
One thing I would like to mention is I think instead of
str.charAt(index)
, It is prefer to usestr[index]
Thanks a lot for sharing that, It will help a lot of people, The only reason why I think charAt() is more preferred over the str[] is that str[] has poor support with some very old browsers so that's why it is recommended to use charAt() as a safe bet otherwise str[] will work just fine 99.99℅ of the time
Again, Thank you so much for sharing this 🙌
IE7?
Is this a problem in 2023?
Btw, there is a difference between
[]
andcharAt
:nice!
Thank You 🙌
Thanks a lot for the advice,
No problem 🙌
substr is more or less deprecated
That's why such posts are useless, it's always better to check the actual documentation.
Totally agree. Reading up on strings at mdn makes much more sense. Just trying to correct the obvious issues:)
Сongratulations 🥳! Your article hit the top posts for the week - dev.to/fruntend/top-10-posts-for-f...
Keep it up 👍