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