2021 JavaScript Cheatsheet | functions

PHOTO EMBED

Thu Sep 23 2021 01:54:14 GMT+0000 (Coordinated Universal Time)

Saved by @drack669 #javascript

function sayFact() {
  let name = prompt("What's your name?");

  if (name === "Sofia") {
    alert("Your name comes from the Greek -> Sophia");
  }
}

sayFact();
content_copyCOPY

https://www.frontendcheatsheets.com/javascript