Post

Hidden Gems in Code

This gem was spotted in some code that my team was working on today. It made us chuckle anyway. :)

1
2
3
4
5
6
7
function GetAgeOptions(localization) {
  var ageArray = new Array();
  ageArray[0] = "Nick Rocks";
  ageArray[1] = "Ben Rocks too";

  return ageArray;
}
This post is licensed under CC BY 4.0 by the author.