GithubHelp home page GithubHelp logo

Comments (3)

caius-faustus avatar caius-faustus commented on August 16, 2024 1

Glad I could help.

from basic-training.

 avatar commented on August 16, 2024

Thank you for catching this! It's in the Content Management System, we're looking into it now and will get back to you!

from basic-training.

Robbiekruszynski avatar Robbiekruszynski commented on August 16, 2024

Question 1:

Has been refactored, thank you for bringing this up.

New version:
Please select all of the javascript primitive types from the options below.
(hint: remember a primitive can only hold a single value!)

Question 3
Thank you for catching that missing (

the correct code now reads as the following

const quiz = {
course: "ConsenSys Academy",  
year: 2021,
getCourse: function() {
console.log(this.course);
  }
}
 quiz.getCourse();

Question 8:
This one was tricky since there are some floating conversations on the 3 vs 4 states of a promise but I do agree and this has been reworked to 3 opposed to 4.

Rework:
Select the three main states of a promise in javascript

Note:
A promise is an object which can be returned synchronously from an asynchronous function. It will be in one of 3 possible states:

Fulfilled: onFulfilled() will be called (e.g., resolve() was called)
Rejected: onRejected() will be called (e.g., reject() was called)
Pending: not yet fulfilled or rejected

A promise is settled if it’s not pending (it has been resolved or rejected). Sometimes people use resolved and settled to mean the same thing: not pending.

Thank you again for bringing this up @caius-faustus. Super helpful.

from basic-training.

Related Issues (20)

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.