How do I debug an AngularJS binding like {{expression}} without any browser addon? I can't use any browser dev tools add-on except Firebug. So, I want to check if the binding expression really has some value from my controller. How do I check this?
(function() {
var app= angular.module("myApp");
var appCtrl = function($scope,$rootScope,$window,$miscService)
{
$scope.myUrl = "http://www.google.com";
}
In the template
<a href="{{myUrl}}" target="_blank">Google</a>
my question is, is it possible to debug my AngularJS expression's value within the HTML?