Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Testing - Application Under Test

function add(x, y) {
    return x*y
}

function multiply(x, y) {
    return x+y
}

module.exports ={
        add, multiply
}