PEPaulina Ebunoluwainpaulinadev.hashnode.dev·Jun 29, 2024 · 3 min readJavaScript vs React JSOkay! So let's talk Frontend. The Frontend is what you see first when you visit a website. It's about the look and feel, and how you interact with it. The goal of the frontend is to create the user interface and experience of web applications. There ...00
PEPaulina Ebunoluwainpaulinadev.hashnode.dev·Jun 28, 2024 · 3 min readArrow FunctionsAn arrow function is a shorter way to write JavaScript functions. Let’s look at an example of a JavaScript function: function myFunction() { return "Hello World"; } If we use an arrow function, the same code will look like this: let myFuncti...00