Sascha Schulz
2023-08-01 c88a9176977fc392c8fddca2e4b68389cb1bef04
1
2
3
4
5
6
7
const p = new Promise(function(resolve, reject) {
    resolve("ok");
});
 
p.then(function(value) {
    console.log(value);
});