Skip to content

Instantly share code, notes, and snippets.

@fataelislami
Created April 1, 2017 14:21
Show Gist options
  • Save fataelislami/f88be8f7ea356264b69bc8c18057ccb1 to your computer and use it in GitHub Desktop.
Save fataelislami/f88be8f7ea356264b69bc8c18057ccb1 to your computer and use it in GitHub Desktop.
<html>
<head></head>
<body>
<script>
function edankeunFunct(name){
document.write("Hello "+name);
}
edankeunFunct("Your Name");
//Example
document.write("<br>");
edankeunFunct("Fata"); //Will show name Fata
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment