• No such thing as == • Compiled code is super fast • Compiled code passes JSLint • Shorthand syntax for common operations • The code compiles one-to-one with it’s javascript equivalent (unlike others)
name: "Bob" cool: false , name: "Jim" cool: true ] cool = (p for p in people when p.cool is true) • Wrapping a loop in parenthesis turns it into a list comprehension • cool = [tom, bob]