Skip to content

Instantly share code, notes, and snippets.

@paulruescher
Last active December 8, 2015 05:56
Show Gist options
  • Save paulruescher/3487be9bbee17fd23a2c to your computer and use it in GitHub Desktop.
Save paulruescher/3487be9bbee17fd23a2c to your computer and use it in GitHub Desktop.
function fullName(firstName, lastName) {
return `${firstName} ${lastName}`;
}
function createEl(el) {
return document.createElement(el);
}
function wrapContentWithEl(el, content) {
return el.innerHTML = content;
}
wrapContentWithEl(
createEl(‘div’),
fullName(‘Paul’, ‘Ruescher’),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment