Skip to content

Ga1dar/js_promises_practice_DOM

 
 

Repository files navigation

Promises practice

Create 3 promises:

  • The firstPromise should be
    • resolved with a message First promise was resolved on a left click in the document
    • rejected with a message First promise was rejected in 3 seconds if not clicked
  • The secondPromise should be:
    • resolved only on left or right click in the document with a message Second promise was resolved
    • never rejected
  • The thirdPromise should be resolved with a message Third promise was resolved only after both left and right clicks happened

Add success and error handlers to each promise to show <div data-qa="notification"> with success or error class and a promise message.

Instructions

  1. Replace <your_account> with your Github username in the link
  2. Follow this instructions
    • Run npm run test command to test your code;
    • Run npm run test:only -- -n to run fast test ignoring linter;
    • Run npm run test:only -- -l to run fast test with additional info in console ignoring linter.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 78.9%
  • SCSS 14.7%
  • HTML 6.4%