AngularJS Example
<!DOCTYPE html>
<html lang="en-US">
<head>
 <title>Welcome to LearnKode -Angular JS tutorial website</title>
 <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.0-rc.1/angular.min.js"></script>
</head>
<body ng-app="sampleApplication">
  <div ng-controller="sampleController" >

  </div>
</body>
</html>
<script>
  var app = angular.module('sampleApplication', []);
  app.controller('sampleController', function($scope) {

  });
</script>

Javascript Examples
<!DOCTYPE html>
<html>
<head>
<title>Welcome to LearnKode - A code learning platform</title>    
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
</head>
<body>
<button onclick="getDay()">Show me the Day</button>
<p id="sample"></p>
<script>
function getDay() {
    var date = new Date();
    var day = date.getDate();
    document.getElementById("sample").innerHTML = day;
}
</script>
</body>
</html>