This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Do you think this is valid JS? | |
// Hint: copy this code to your dev tools conosle. | |
var emptyString = " "; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function runTest(n) { | |
'use strict'; | |
/* The Computer Language Benchmarks Game | |
http://benchmarksgame.alioth.debian.org/ | |
contributed by Isaac Gouy | |
Optimized by Roy Williams | |
Changed to JS arrays by Anvaka | |
*/ | |
/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* The Computer Language Benchmarks Game | |
http://benchmarksgame.alioth.debian.org/ | |
contributed by Isaac Gouy | |
Optimized by Roy Williams*/ | |
/** | |
* @type {number} | |
*/ | |
var PI = 3.141592653589793; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function runtIt(n) { | |
'use strict'; | |
/* The Computer Language Benchmarks Game | |
http://benchmarksgame.alioth.debian.org/ | |
contributed by Isaac Gouy | |
Optimized by Roy Williams | |
"Deoptimized" to plain JS objects by Anvaka*/ | |
/** | |
* @type {number} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var createArray = function (length) { | |
var arr = []; | |
for(var i = 0; i < length; ++i) { | |
arr[i] = 0.1; | |
} | |
return arr; | |
}, | |
length = 10000, | |
arr1 = createArray(length), | |
arr2 = createArray(length); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Mixin to let object fire events and let consumers | |
* listen to those events. | |
* | |
* @param object {Object} - producer of events. | |
* @param contract {Array of strings} - optional events contract. | |
* | |
* Examples: | |
* var obj = eventify({}); | |
* // now you can listen to object's events: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// what needs to be changed in this code, to satsify requirements below: | |
function () { | |
function foo() { | |
var a = 42, | |
b = function () { console.log('hi'); }; | |
} | |
// a and b should be available in this scope (but not the outter) | |
// No other modifications to this scope are allowed | |
function bar() { | |
// could use a, b. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function () { | |
var arr = ["(function () {", "var arr = [", "arr[1] += arr.map(function(x) { return String.fromCharCode(0x22) + x + String.fromCharCode(0x22); }).join(', ') + '];';", "arr.forEach(function(x) { console.log(x); });", "}())"]; | |
arr[1] += arr.map(function(x) { return String.fromCharCode(0x22) + x + String.fromCharCode(0x22); }).join(', ') + '];'; | |
arr.forEach(function(x) { console.log(x); }); | |
}()) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
forEachUnlinkedNode : function (nodeId, callback, oriented) { | |
var graph = this, | |
node = graph.getNode(nodeId), | |
linkedNodeId, | |
currentNodeId; | |
if (node && typeof callback === 'function') { | |
var linkedNodes = {}; | |
graph.forEachLinkedNode(nodeId, function (node) { linkedNodes[node.id] = true; }, oriented); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function buildObjectCallGraph(obj, timeOutId) { | |
if (typeof Viva === 'undefined') { | |
if (!timeOutId) { | |
var head = document.getElementsByTagName('head')[0], | |
script = document.createElement('script'); | |
script.setAttribute('src', 'https://raw.github.com/anvaka/VivaGraphJS/master/dist/vivagraph.min.js'); | |
script.setAttribute("type","text/javascript"); | |
head.appendChild(script); | |
} | |
var timeOutId = setTimeout(function() { |