- What is
data-binding
? Which attribute we use for data binding? - What difference between
service
,factory
andprovider
? - What is
interceptor
? - When do we use
$scope.$watch()
,$scope.$digest()
and$scope.apply()
? - Which routing system do you use? What does
deep linking
mean? - What does
ng-strict-di
attribute means? - What the difference between Angular version 1.4 and 1.5?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https?:\/\/(?:www.)?youtu(?:.be|be.com)\/(?:.+?v=|)([a-zA-Z0-9_-]{11})/ | |
Works with: | |
https://www.youtube.com/watch?v=6QjIHnb5Ivs | |
https://youtu.be/6QjIHnb5Ivs?t=37 | |
https://www.youtube.com/watch?v=6QjIHnb5Ivs&feature=youtu.be#t=37 | |
https://youtu.be/6QjIHnb5Ivs | |
http://youtu.be/6QjIHnb5Ivs?t=37 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function() { | |
console.log(abc); | |
var abc = "abc"; | |
console.log(myFunc()); | |
function myFunc() { | |
var def = abc + 'def'; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.truncate { | |
width: 250px; | |
white-space: nowrap; | |
overflow: hidden; | |
text-overflow: ellipsis; | |
} |