fix up test styling and add use-strict declarator

This commit is contained in:
Sebastian McKenzie
2014-10-18 15:42:36 +11:00
parent 6c48e6cd66
commit dcaea68240
198 changed files with 697 additions and 447 deletions

View File

@@ -1,11 +1,13 @@
var arr = (function () {
"use strict";
var arr = function() {
var _arr = [];
"abcdefgh".split("").forEach(function (x) {
"12345678".split("").forEach(function (y) {
"abcdefgh".split("").forEach(function(x) {
"12345678".split("").forEach(function(y) {
_arr.push(x + y);
});
});
return _arr;
})();
}();