Git Product home page Git Product logo

jubin_js_drills_closures's Introduction

JS_Drills_Closures

Complete the following functions.

function counterFactory() { // Return an object that has two methods called increment and decrement. // increment should increment a counter variable in closure scope and return it. // decrement should decrement the counter variable and return it. }

function limitFunctionCallCount(cb, n) { // Should return a function that invokes cb. // The returned function should only allow cb to be invoked n times. // Returning null is acceptable if cb can't be returned }

function cacheFunction(cb) { // Should return a function that invokes cb. // A cache (object) should be kept in closure scope. // The cache should keep track of all arguments have been used to invoke this function. // If the returned function is invoked with arguments that it has already seen // then it should return the cached result and not invoke cb again. // cb should only ever be invoked once for a given set of arguments. } Create a function for each problem in a file called counterFactory.js, limitFunctionCallCount.js, cacheFunction.js and so on in the root of the project.

Ensure that the functions in each file is exported and tested in its own file called testCounterFactory.js, testLimitFunctionCallCount.js, testCacheFunction.js and so on in a folder called test.

So your directory structure will look like this

├── counterFactory.js ├── limitFunctionCallCount.js ├── cacheFunction.js └── test ├── testCounterFactory.js ├── testLimitFunctionCallCount.js └── testCacheFunction.js

Create a new git repo on gitlab for this project, ensure that you commit after you complete each problem in the project.

Ensure that the repo is a public repo.

When you are done, send the gitlab url to your mentor

jubin_js_drills_closures's People

Contributors

jubin369 avatar

Watchers

 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.