AngularJS | angular.toJson() Function
The angular.toJson() Function in AngularJS is used to serialize the javascript object into a JSON – formatted string. It takes the javascript object and returns JSON string.
Syntax:
angular.toJson(object)
Example:
<!DOCTYPE html> < html > < head > < script src = "//ajax.googleapis.com/ajax/libs/angularjs/1.3.2/angular.min.js" > </ script > < title > angular.toJson() </ title > </ head > < body ng-app = "app" style = "text-align:center" > < h1 style = "color:green" > GeeksforGeeks </ h1 > < h2 > angular.toJson() </ h2 > < div ng-controller = "geek" > < button ng-click = "showAlert()" > Click it!</ button > </ div > < script > var app = angular.module("app", []); app.controller('geek', ['$scope', function($scope) { $scope.showAlert = function() { var string = { 'Name': 'Quick sort', 'Type': 'sorting' }; alert(angular.toJson(string)); } }]); </ script > </ body > </ html > |
chevron_right
filter_none
Output:
Before Click:
After Click:
Recommended Posts:
- PHP | imagecreatetruecolor() Function
- p5.js | year() function
- D3.js | d3.utcTuesdays() Function
- PHP | Ds\Sequence last() Function
- Function to escape regex patterns before applied in PHP
- PHP | array_udiff_uassoc() Function
- PHP | geoip_continent_code_by_name() Function
- D3.js | d3.map.set() Function
- PHP | opendir() Function
- PHP | cal_to_jd() Function
- D3.js | d3.bisectLeft() Function
- PHP | stream_get_transports() Function
- PHP | Ds\Deque pop() Function
- PHP | SimpleXMLElement children() Function
- AngularJS | ng-show Directive
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.