Initial commit
This commit is contained in:
15
Function/function.js
Normal file
15
Function/function.js
Normal file
@@ -0,0 +1,15 @@
|
||||
a();
|
||||
b();
|
||||
c();
|
||||
|
||||
function a(){
|
||||
console.log("a")
|
||||
}
|
||||
|
||||
let b = ()=>{
|
||||
console.log("b");
|
||||
}
|
||||
|
||||
let c = function (){
|
||||
console.log("c");
|
||||
}
|
||||
Reference in New Issue
Block a user