Giter Club home page Giter Club logo

js-objects-stack-challenge's Introduction

General Assembly Logo

JavaScript Stack Challenge

In computer science, a stack or LIFO (last in, first out) is an abstract data type that serves as a collection of elements, with two principal operations: push, which adds an element to the collection, and pop, which removes the last element that was added. -- Stack (abstract data type), Wikipedia

The goal of this exercise is to practice writing prototype methods. As a reminder of how we use prototypes, we've provided starter code including a constructor function and one completed prototype method. Your task will be to complete the remaining method.

Instructions

  1. Fork and clone this repository.
  2. Change into the new directory.
  3. Install dependencies.
  4. Create a working branch, challenge.
  5. Follow the remaining instructions.

Create a custom JavaScript object modeling a stack using a constructor function and a prototype. Starter code has been provided in lib/stack.js.

Requirements

  • You should be able to create a new stack with let stack = new Stack();.

  • Your stack should have two methods, push and pop.

    • push adds a new value to the stack's storage.
    • pop removes the most recently added value from the stack's storage and returns it.
  • You should not use Array.prototype.push() or Array.prototype.pop().

As you work, you may run grunt test to check your code against these requirements.

Bonuses

Change xit to it in spec/stack.spec.js to have grunt test check the bonuses.

Pre-fill the stack on instantiation

let stack = new Stack(1, 2, 3);
stack.pop(); //=> 3

Allow push to chain

let stack = new Stack();
stack.push(1).push(2).push(3);
stack.pop(); //=> 3

Which parts of each method are side-effects, and which are the "main" effect?

  1. All content is licensed under a CC­BY­NC­SA 4.0 license.
  2. All software code is licensed under GNU GPLv3. For commercial use or alternative licensing, please contact [email protected].

js-objects-stack-challenge's People

Contributors

jrhorn424 avatar bengitscode avatar raq929 avatar

Watchers

James Cloos avatar Brandon Bowers 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.