• This project
    • Loading...
  • Sign in

손희승 / OSS

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • OSS
  • Experiments
  • Experiments07
  • Tutorial
  • function.js
  • Dexter Jin's avatar
    Experiments07 Uploaded · 7c14d241
    7c14d241
    Dexter Jin authored 2017-10-09 18:20:30 +0900
function.js 233 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13
function concatenate(first, last)
{
	    var full;
	    full = first + last;
	     return full;
}
function secondFunction()
{
	    var result;
	    result = concatenate('Zara', 'Ali');
	    console.log (result );
}
secondFunction();