Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function pertama() {
- console.log("pertama");
- }
- function kedua() {
- console.log("kedua");
- }
- function ketiga() {
- console.log("ketiga");
- setTimeout(pertama, 0);
- new Promise((resolve, reject) => {
- resolve("Promise OK");
- }).then((data) => console.log(data));
- kedua();
- }
- ketiga();
Advertisement
Add Comment
Please, Sign In to add comment