Hal ini juga menjadi umum dalam pemrograman server-side, pengembangan game dan penciptaan aplikasi desktop. wikipedia
Requirements : 1. Text Editor 2. Web browser
<!DOCTYPE html>
<html>
<body>
	
	<h1> Hello World Java Script</h1>
	<p> Click The Button </p>
	<b id="p_contentHelloWorld"> </b> 
	<p id="p_content"></p>
	<button type="button" onclick="myJavaScriptFunction()" >
		Hit Me!!
	 </button>
	 <script>
		function myJavaScriptFunction(){
			document.getElementById("p_contentHelloWorld").innerHTML="Hello World JavaScript!! :)";
			document.getElementById("p_content").innerHTML=Date();
		}
	</script>	
</body>
</html>
Running=====
1. Save Code dengan extensi *.html
2. Klik Kanan Pada File, open with browser(Chrome,Mozilla,Internet Explorer,dll)
Result :

 
1 comment:
http://stackoverflow.com/questions/6850611/sort-a-list-of-objects-by-multiple-fields
Post a Comment