Skip to content

Commit

Permalink
second commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jcarrillog-psl committed May 9, 2019
1 parent 3b2a6c2 commit e1d7340
Show file tree
Hide file tree
Showing 5 changed files with 456 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/node_modules
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#First project"# NodePractice"
7 changes: 7 additions & 0 deletions first.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
function average(grade_one, grade_two, grade_three)
{
let result = (grade_one+grade_two+grade_three)/3;
console.log(result);
}

average(1,2,3);
Loading

0 comments on commit e1d7340

Please sign in to comment.