<!DOCTYPE html> <div ng-app="myApp" ng-controller="myCtrl"> <p>The hexadecimal value of 255 is:</p> <h1>{{hex}}</h1> </div> <p>A custom service with a method that converts a given number into a hexadecimal number.</p> <script> app.service('hexafy', function() { </body> </html> |
The hexadecimal value of 255 is: {{hex}}A custom service with a method that converts a given number into a hexadecimal number. |