Skip to content

Instantly share code, notes, and snippets.

@christabor
Last active August 29, 2015 13:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save christabor/9924000 to your computer and use it in GitHub Desktop.
Save christabor/9924000 to your computer and use it in GitHub Desktop.
Constants as greek
var τ = Math.PI * 2;
var Θ = 30;
var λ = function(){};
var ψ = ['z^0', 'z^1', '...'];
var Δ = function(thing1, thing2){return Math.abs(thing1-thing2);};
alert(Θ);
alert(τ);
alert(λ);
alert(ψ);
alert(Δ);
alert( Δ(100, 100) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment