I am using a using angular js script of angular code this code not return nothing in html page i try it more times but also not return nothing Any idea or help to run this code
/// <reference path="angular.min.js" />
//var myApp = angular.module("myModule", []);
myApp = angular
.module("mymodule", [])
.controller("mycontroller", function ($scope) {
var tecnologies = [
{ name: "c#", likes: 0, dislikes: 0 },
{ name: "asp.net", likes: 0, dislikes: 0 },
{ name: "sqlserver", likes: 0, dislikes: 0 },
{ name: "Angulaer js", likes: 0, dislikes: 0 },
];
$scope.tecnologies.tecnologies;
$scope.incrementlikes=function(tecnologyy)
{
tecnologyy.likes++;
}
$scope.incrementdislikes = function (tecnologyy) {
tecnologyy.dislikes++;
}
});
Markup:
<!DOCTYPE html>
<html xmlns="xmlns= http //www.w3.org/1999/xhtml">
<head>
<title></title>
<!--<script src="scripts/angular.min.js"></script>-->
<script src="scripts/angular.min.js"></script>
<script src="scripts/angular.js"></script>
<!--<script src="scripts/Script.js"></script>-->
<script src="scripts/JavaScript9.js"></script>
<!--<script src="scripts/angular.js"></script>-->
<title></title>
</head>
<body ng-app="mymodule">
<div ng-controller="mycontroller">
<table>
<tr>
<th>Name</th>
<th>likes</th>
<th>dislikes</th>
<th>Likes/dislikes</th>
</tr>
<tbody>
<tr ng-repeat="tecnolgy in tecnologies">
<td>{{tecnolgy.name}}</td>
<td>{{tecnolgy.likes}}</td>
<td>{{tecnolgy.dislikes}}</td>
<td>
<input type="button" value="Like" ng-click="incrementlikes(tecnolgy)">
<input type="button" value="disLike" ng-click="incrementdislikes(tecnolgy)">
</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>