Conditionals Review
Review the Conditional concepts.
let myName = "Luke";
if (myName === "Luke") {
alert("No, I am your father!");
}
if (myName === "Greg") {
alert("idk who you are!!!");
}
Code-Along: Friend Proxy Chatbot
Click here to access the code-along instructions.
Extra
Check out some of these additional resources.