Skip to content

Instantly share code, notes, and snippets.

View bayronq's full-sized avatar
:octocat:

Bayron Cuá bayronq

:octocat:
View GitHub Profile
'use strict';
module.exports = (function() {
var Calculadora = {
somar: function() {
var soma = 0, i = undefined;
for( i=0; i < arguments.length; i++ )
soma += arguments[i];