JavaChip my attempt to make JavaScript simpler, more predictable, and provide control-flow tools to make development in an asyncronous environment more comfortable.
[]
– a collection of data (arrays, lists, dicts, hashes)
{}
– a task or set of instructions; a block of code.
||
– discussing requirements
()
– executing (possibly with a set of requiremnets); a context
hello = 'world'
The language should have datatypes, but they should be optional.
who = { |str name, int age| log("My name is #{name}, and I am #{age}.") }
who('John', 22)
//=> "My name is John, and I am 22."
who(1337, 22)
//=> Error: parameter "name" should be a String.
who = { |name, age| log("My name is #{name}, and I am #{age}.") }
who(1337, "older than you")
//=> "My name is 1337, and I am older than you."
block = {}
sayHello = { log('hello world') }
sayHello() // logs: 'hello world'
greet = { |who| log('hello', who) }
greet('Bob') // 'Hello Bob'
add = { |num1, num2| num1 + num2 }
add(1,2) // undefined
add = { |num1, num2| resolve(num1 + num2) }
add(1,2) // 3
add = { |num1, num2| resolve(num1 + num2) }
add(1,1) // 2
get_two = add|1,1|
get_two() // 2
shake_hand = { log('executing secret hand shake...') }
greet('Bob')&{ shake_hand() }
// "Hello Bob"
// "executing secret hand shake..."
greet('Bob')&shake_hand
greet('Bob')
&shake_hand
&moonwalk
greet('Bob')
&[ shake_hand, moonwalk ]
done = greet('Bob')&
done(shake_hand)
server.on('request', reqHandler: { |req, res|
res.end('Hola!')
})
greet('Bob')&my_callback: { /* do stuff here */ }
[ item1, item2, item3 ]
log(['dogs','cats','antelope']) // logs...
// [ 1: 'dogs'
// 2: 'cats'
// 3: 'antelope' ]
names = [ 'Bob', 'Kyle', 'James' ]
names[1] //=> 'Bob'
[ key: 'value' ]
bob = [ name: 'Bob', profession: 'Builder' ]
bob.name // 'Bob'
bob['profession'] // 'Builder'
[ companies: [
[ name: "google", url: "www.google.com" ],
[ name: "yahoo", url: "www.yahoo.com" ],
[ name: "microsoft", url: "www.microsoft.com" ]
],
people: [ "Steve Jobs", "Bill Gates", "Luke Wroblewski" ] ]