GithubHelp home page GithubHelp logo

cookout's Introduction

Copy the following objects into your JavaScript file.

const hamburger = { name: 'Hamburger', type: 'beef', cooked: false, } const zucchini = { name: 'Zucchini', type: 'vegetable', cooked: false, } const chickenBreast = { name: 'Chicken Breast', type: 'chicken', cooked: false, } const corn = { name: 'Corn', type: 'vegetable', cooked: false, } const steak = { name: 'Steak', type: 'beef', cooked: false, }

// An first array containing the objects to be cooked. const uncookedFood = [hamburger, zucchini, chickenBreast, corn, steak];

// An empty array that will store the objects after the grill() function cooks the food. const cookedFood = []; This exercise does not require you to alter this function. But read it. See if you can follow what it takes in, executes, and returns.

The grill() function. Copy this into your JavaScript as well.

function grill (currentObject) { // Modify the food so that it is cooked currentObject.cooked = true;

// Put the cooked food into the appropriate array
cookedFood.push(currentObject);

}; Your task is to iterate over the array of uncookedFood and invoke the function for each item so that the cookedFood array contains all of the items after they are cooked.

cookout's People

Contributors

anupamagarg avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.