#2articles1week-1
Read more stories on Hashnode
Articles with this tag
Let's keep moving, folks! We have all the URLs for all recipes we want to save. Now, let's see what we will have to do to scrap it. Let's use this...
Hey you! Let's continue scraping websites (well... the first one was only API calls, I know. And I'm not complaining hehehe! Way easier, right?) and...
Some different ways to reverse a string Array method const string = "Let's reverse this"; return string.split("").reverse().join(""); For-loop ...
Imagine this: you have a list of many items you bought on supermarket and you want to know which ones are not duplicated. With indexOf and...