summary refs log tree commit diff stats
path: root/javascript/two-fer/two-fer.js
blob: cb896a3404f782c2c1b94527c8757f2c1851387a (plain) (blame)
1
2
3
export const twoFer = (name = "you") => {
    return `One for ${name}, one for me.`
};