I'm working with angular js. My project includes only the angular.min.js file, with no other references of js files like javascript etc. The code which makes request to the server is as follows:
var app = angular
.module("myModule", [])
.controller("myController", function($scope, $http) {
$http.get("WebService.asmx/GetAllEmployees")
.then(function(response) {
$scope.employees = response.data;
console.log(response.data)
}, function(reason) {
$scope.error = reason.data;
});
});
I'm wondering about the following line:
console.log(response.data)
I could not figure out who's property this function is?
Is this browser builtin function?