Newer
Older
minerva / Base / home / anon / Source / js / function-with-arguments.js
@minerva minerva on 13 Jul 56 bytes Initial commit
function foo(a, b) {
    return a + b;
}
foo(1, 2 + 3);