App Academy: Function Practice

/**

  • ###################################
  • Muscle Memory
  • ###################################
  • They told me 10, I went in 12 times
  • Getting back into Programming within p1xt Guide again (via App Academy)
    */

function sayHello(name) {
let msg = "Hello, " + name + “. How are you?”;
return msg;
}

console.log(sayHello(“world”));

function uberOrder(restaurant) {
let order = “Going out to " + restaurant + " for pickup.”;
return order;
}

console.log(uberOrder(“Wendys”));

function userName(name) {
return “Hello " + name + " and welcome.”

}

console.log(userName(“Kingsley”));

function addNumbers(num1, num2) {
return "Total of " + num1 + " and " + num2 + " is " + (num1 + num2) + “.”;
}

console.log(addNumbers(5, 4));

function greetings(username) {
return Welcome ${username}

}

console.log(greetings(“kingzlofitness”));

function password(password) {
return The password you entered is ${password}.
}

console.log(password(“asdf”));

console.log(“\n\nWhat is your favorite color?”)
function favColor(color) {
return Your favorite color is: ${color}
}

console.log(favColor(“green”));

/***
*

  • Ask a question and create a function that will give the answer
    */
    console.log(“\n\nA boolean question. How would you judge yourself?”)

function judgement(consderation) {
return You seem to think you are ${consderation}.
}

console.log(judgement(“good”))

console.log(“\n\nWhat is your faorite food?”);

function favFood(foodType) {
return My favorite food is: ${foodType}.
}

console.log(favFood(“fruits”));

console.log(“\n\nScale of 1-10, how are you?”);

function feelingToday(feelingScale) {
return I feel like a ${feelingScale} today.
}

console.log(feelingToday(“9”));

console.log(“\n\nHow much do you weigh?”);

function measureSelf(amountOfWeight) {
return My weight is ${amountOfWeight}.
}

console.log(measureSelf(170));

Please Tell us what’s happening in your own words.

Learning to describe problems is hard, but it is an important part of learning how to code.

Also, the more you say, the more we can help!