I've seen that on AngularJS tutorials, that some people declare their controller functions like so:
function FirstController($scrope) {
// do something with $scope
}
and other have done it like this:
var FirstController = function ($scope) {
// do something with scope
}
Which way is the best way to declare a controller in your JS file, that will work best with the latest version of AngularJS ( right now 1.0.7 ), as in what are the best practices? Or does it not really matter?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…