Key Words
Technically Neat
Stay For a While
RUN!!!
Misc.
100

I use this word before a variable to define it

What is let?

100

Using this effective coding technique me and my bestie just finished this project working together

What is Pair Programming with the pilot/copilot method?

100

Print all even numbers from 1-15

What is for OR while loop?

100

const question1 = (num) => {

    console.log(num + 5);

};

question1("3");

What is 35?

100

The COAT! Coach Of All Time

Who is Coach Asim, Coach Nando, Coach Naomi, Coach Sarahi, and Coach Sadeem?

200

Without me I will never know what the user inputs

What is READLINE

What is require("readline-sync")?

200

Talking to me without expecting a response could lead you to the answer you need 

What is the Rubber Ducky Method?

200

Use me when playing a guessing game and you want to keep asking for input

What is while loop?

200

const question2 = () => {

    let num = 321;

    function innerFunction() {

        let num = 123;

    }

    innerFunction();

    console.log(num);

};

What is 321?

200
I got created in this function and can't be use out of it

What is a local scope?

300

Almost every choice you make in life could be written in this format

What is if/else statements?

300

I'm frequently used when you need to know if a number is even or odd

What is modulo (remainder)?

300

Print every element in a list individually on its own line

What is for loop?

300

const question3 = () => {

    for (let i = 0; i < 5; i++) {

        for (let j = 0; j < 2; j++) {

            console.log(`Hi`);

        }

    }

};

question3();

What is Hix10?

300

Create me outside of functions and classes and I can be used anywhere

What is global scope?

400

Sometimes you need to make your own type

What is class or object?

400

A way to get the last element of a list without knowing how long it is

What is array[array.length -1]?

400

Adding user input to an array till the user says stop

What is while loop?

400

const question4 = () => {

    let food = ["Sushi", "Burger", "Pizza"];

    food.push("Shawarma", "Tacos")

    console.log(food.pop());

};

question4();

What are Tacos?

400

My existence is short as I only live inside a function

What is a parameter?

500

A way to use data outside of a function when it finishes

What is return?
500

Use me when you need to remove an item from the middle of a list

What is Array.splice(indexToRemove, 1)?

500

Counting to 10 every time the user says Y and stopping when they say N

What is a for and while loop?

500

const question5 = () => {

    let dog = {

        name: "Rico",

        age: 3,

        breed: "Golden Poodle",

    };

    dog.breed = "Golden Doodle";

    console.log(`${dog.name} is Sadeem's ${dog.breed}!`);

};

question5();

What is Rico is Sadeem's Golden Doodle!?

500

X makes me True

9 > x && 6 <= x && x != 5

What is 6, 7, or 8?