Array Test

by MegaScience

JavaScript

function test([a, b]) {
    console.log(`${a} --- ${b}`)
}
test(['Hello', 'world!'])