Deleted Comment
We've doubled in size from our initial 2 in the last couple of months and with many more prospects on the horizon we're hoping to add a few more to that over the course of the next year!
new Promise(resolve => resolve("resolved!")).then(result => console.log(result));
console.log("next statement");
Prints "next statement" then "resolved!". Promise.resolve("resolved!").then(result => console.log(result));
console.log("next statement");
EDIT: she