Skip to content

Instantly share code, notes, and snippets.

View SidShenoy's full-sized avatar
🏠
Working from home

Siddhant Shenoy SidShenoy

🏠
Working from home
View GitHub Profile
@SidShenoy
SidShenoy / promise.js
Last active November 23, 2020 04:18
Structure of a promise
var promise = new Promise(function(resolve, reject){
var goodGift = true;
if(goodGift){
// Your promise was reolved!
var gift = {"message": "Here is an iPhone12!"}
resolve(gift);
}
else {
// Your promise was rejected!
@SidShenoy
SidShenoy / .block
Last active July 18, 2017 11:29
Atlas of Learning - Live Example
license: AGPL-3.0