Created
July 31, 2020 21:59
-
-
Save Ifycode/05dcc34d570e15cd95002f17611c0b00 to your computer and use it in GitHub Desktop.
Embed for Understanding Regular Function & Converting To Arrow Function Article index.js file - Js example 4
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
'use strict'; | |
//Anonymous function with parameters | |
let sameFunction = function(num3, num4) { | |
let displayBox = document.getElementById('displayBox'); | |
displayBox.innerHTML = `${num3} + ${num4} = ${num3+num4}`; | |
} | |
sameFunction(3, 4); | |
//output: 3 + 4 = 7 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment