Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/LinkedInLearning/javascript-essential-training-2832077
/ doMoreMath
Function
doMoreMath
08_02/script.js:13–16 ·
view source on GitHub ↗
(a = 3, b = 2)
Source
from the content-addressed store, hash-verified
11
12
// Function expression:
13
const
doMoreMath =
function
(a = 3, b = 2) {
14
let
c = a * b;
15
return
c;
16
};
17
18
console.log(
"Do some math:"
, doSomeMath(5, 6));
19
console.log(
"Do more math:"
, doMoreMath(5, 6));
Callers
1
script.js
File · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected