<div id="root"></div>
// this is just here to display results to DOM
const addResultToDOM = (...args) => $('#root').append(`<div>${args.join(' ')}</div>`)
const add = x => x + 2
addResultToDOM('results of add(2):', add(2))
addResultToDOM('results of add(2):', add(2))
addResultToDOM('results of add(2):', add(2))
This Pen doesn't use any external CSS resources.