This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"users": [ | |
{ | |
"id": "40", | |
"firstName": "Alex", | |
"age": 13, | |
"companyId": "2" | |
}, | |
{ | |
"id": "41", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const DAOVotingContract = { | |
balance: 400, | |
id: 3, | |
authorizedVoters: [ | |
{ nodeId: "A", address: "Alice" }, | |
{ nodeId: "B", address: "Eve" }, | |
{ nodeId: "A", address: "Gal Gadot" } | |
], | |
votes: [ | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const MoveFundsAfterDateContract = { | |
balance: 400, | |
expirationDate: new Date("October 13, 2016 11:13:00"), | |
id: 2, | |
fromAddress: "Bob", | |
call: function() { | |
return { getBalance: this.balance, getFromAddress: this.fromAddress }; | |
}, | |
send: function() { | |
return { changeBalance: this.changeBalance }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const CounterContract = { | |
balance: 0, | |
counter: 0, | |
incrementValue: function() { | |
this.counter++; | |
}, | |
id: 1, | |
fromAddress: "Alice", | |
call: function() { | |
return { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let a = 4; | |
let b = 5; | |
let c = 6; | |
const updateTwoVars = (a, b, c) => [b++, a * b]; | |
const updateRes = updateTwoVars(a,b,c); | |
b = updateRes[0] | |
c = updateRes[1] | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const bankStatement = | |
name => | |
location => | |
balance => | |
`Hello ${name}! Welcome to the bank of ${location}. Your current balance is ${balance}`; | |
const statementExpectingLocation = bankStatement("Omer"); | |
const statementExpectingBalance = statementExpectingLocation("NYC"); | |
const bankStatementMsg = statementExpectingBalance("100 million"); // wishful thinking? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const functionAsObjectProperty = { | |
print: (value) => console.log(value) | |
}; | |
functionAsObjectProperty.print("mic check"); // "mic check" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let a = 4; | |
let b = 5; | |
let c = 6; | |
const updateTwoVars = (a) => { | |
b++; | |
c = a * b; | |
} | |
updateTwoVars(a); | |
console.log(b,c); // b = 6, c = 24 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
async function getUserToken(id) { | |
const token = await getTokenFromServer(id); | |
return token; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const addWrapper = () => (x,y) => x + y; | |
const add = addWrapper(); | |
const sum1 = add (1,2); // 3 | |
// Or we could do it like this | |
const sum2 = addWrapper()(4,4); // 8 |
NewerOlder