Fun with comparison operators
Just discovered today that you can store a comparison as a boolean variable to be used later. Works in Processing (Java) and JavaScript. Comes in handy when doing a certain comparison based on a condition you've set. An example in JavaScript:
var c = 54>12; console.log(c); >>true












