String Polyfills and Common Interview Methods in JavaScript
What are string methods ?
lets start with some string methods . there are many but i will only discuss about some common ones.
// toUpperCase() / toLowerCase()
"hello".toUpperCase(); // "HELLO"
"WORLD
toddlerstech.hashnode.dev2 min read