// Old | |
function sum($elements) { /* calculate sum */ } | |
function product($elements) { /* calculate sum */} | |
// New | |
var MathUtils = { | |
function sum($elements) {}, | |
function product($elements) {} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment