Skip to content

Instantly share code, notes, and snippets.

@MirzaChilman
Created January 10, 2018 01:17
Show Gist options
  • Save MirzaChilman/978ef43cb53d6f67d3eab2071b3a0bce to your computer and use it in GitHub Desktop.
Save MirzaChilman/978ef43cb53d6f67d3eab2071b3a0bce to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<script type="text/javascript">
var kata = "javascript";
document.write(kata.concat(" Method")+'<br>');
//javascript Method
document.write(kata.concat( " Data ", " Method")+'<br>');
//javascript Data Method
// Note : <br> = break rule yang berarti memberi 1 enter atau space ke bawah
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment