Skip to content

Commit

Permalink
25.1.JavaScript - 함수의 생성
Browse files Browse the repository at this point in the history
  • Loading branch information
egoing committed Jun 2, 2018
1 parent 101023b commit b351494
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions syntax/function.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
f123();
console.log('A');
console.log('Z');
console.log('B');
f123();
console.log('F');
console.log('C');
console.log('P');
console.log('J');
f123();
console.log('U');
console.log('A');
console.log('Z');
console.log('J');
console.log('I');
f123();

function f123(){
console.log(1);
console.log(2);
console.log(3);
console.log(4);
}

0 comments on commit b351494

Please sign in to comment.