The intention behind the code below is to bind $scope.as. However, currently no content is being displayed and no errors are showing up in the console.
var testModule = angular.module('testmodule', [])
.controller('ctrl', function ($scope, mser) {
mser.aa();
})
.service('mser', function($scope /* Is $scope supposed to be here */) {
this.aa = function(){
$scope.as = "hello mars"
}});