×

Welcome to TagMyCode

Please login or create account to add a snippet.
0
0
 
0
Language: Javascript
Posted by: Nilesh Yadav
Added: Jun 12, 2017 5:52 AM
Views: 2345
Tags: no tags
  1. $scope.Interpolate = function() {
  2.         var f = $interpolate("{{a * b}}");
  3.         var r1 = f($scope);
  4.         alert("Result = " + r1);
  5. }