useful snippets
avoid decimal and float rounding weirdness
JavaScript
// binary decimal method
return parseFloat(returnedFeed.toFixed(1));
//get caller of anon function
console.log("caller is " + arguments.callee.caller.toString());
// binary decimal method
return parseFloat(returnedFeed.toFixed(1));
//get caller of anon function
console.log("caller is " + arguments.callee.caller.toString());