Last active
December 8, 2015 05:56
-
-
Save paulruescher/3487be9bbee17fd23a2c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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