From 6ca7622de83d93b175c99c2b3d0dba5d371d3203 Mon Sep 17 00:00:00 2001 From: zjf Date: Sun, 10 May 2020 13:55:43 +0800 Subject: [PATCH] revise a note of promise then. --- open-in-web-browser.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/open-in-web-browser.html b/open-in-web-browser.html index 867fb9a..6b6f1da 100644 --- a/open-in-web-browser.html +++ b/open-in-web-browser.html @@ -3829,7 +3829,7 @@

7.6 : Chaining Promises with then()

Notes:

    -
  1. If you don't provide then() a resolve function or provide a non-function, no error will occur. The next then() resolve function is passed an undefined value.
  2. +
  3. If you don't provide then() a resolve function or provide a non-function, no error will occur, and the next then() resolve function will passed the value the current resolve function passed.