#webdev
Read more stories on Hashnode
Articles with this tag
Proxies A JavaScript proxy will let one object stand in for other object to handle all the interactions for that other object.The proxy can handle...
The HTML Document Every HTML document you create or load is derived from this basic format: <!DOCTYPE html> <html lang="en"> <head> <meta...
shift() will remove the first element from an array. splice() can be used if you specify the index of the first element, and indicate that you want to...
As the code gets longer and inevitably, there will be a code that repeats the same number of steps. Instead of repeating the same steps multiple...
Indexing To access an individual character, you can use the character's location in the string, called its index. Just put the index of the character...