You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+11-11Lines changed: 11 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -900,7 +900,7 @@ not simple. You can easily generate one via this link https://www.grc.com/passwo
900
900
The authorization header should be `Bearer [token]`.
901
901
902
902
903
-
#### Q. Directive Example
903
+
#### Q. ***Directive Example***
904
904
905
905
```javascript
906
906
.directive("enter", function(){
@@ -912,7 +912,7 @@ The authorization header should be `Bearer [token]`.
912
912
});
913
913
```
914
914
915
-
#### Q. IIFE Pattern used in AngularJS
915
+
#### Q. ***IIFE Pattern used in AngularJS***
916
916
917
917
```html
918
918
<!doctype html>
@@ -953,7 +953,7 @@ The authorization header should be `Bearer [token]`.
953
953
</script>
954
954
```
955
955
956
-
#### Q. Filter used in JavaScript part
956
+
#### Q. ***Filter used in JavaScript part***
957
957
958
958
```html
959
959
<body ng-app="app">
@@ -980,7 +980,7 @@ The authorization header should be `Bearer [token]`.
980
980
</script>
981
981
```
982
982
983
-
#### Q. Factory in AngularJS
983
+
#### Q. ***Factory in AngularJS***
984
984
985
985
```html
986
986
<div ng-controller="IndexCtrl as vm">
@@ -1036,7 +1036,7 @@ The authorization header should be `Bearer [token]`.
1036
1036
</script>
1037
1037
```
1038
1038
1039
-
#### Q. Value in AngularJS
1039
+
#### Q. ***Value in AngularJS***
1040
1040
1041
1041
```javascript
1042
1042
(function (angular) {
@@ -1065,7 +1065,7 @@ The authorization header should be `Bearer [token]`.
1065
1065
})(angular);
1066
1066
```
1067
1067
1068
-
#### Q. Creating Sub-Module in AngularJS ( Extending Module in AngularJS )
1068
+
#### Q. ***Creating Sub-Module in AngularJS ( Extending Module in AngularJS )***
1069
1069
1070
1070
```javascript
1071
1071
(function (angular) {
@@ -1111,7 +1111,7 @@ The authorization header should be `Bearer [token]`.
1111
1111
})(angular);
1112
1112
```
1113
1113
1114
-
#### Q. config() vs run()
1114
+
#### Q. ***config() vs run()***
1115
1115
1116
1116
```javascript
1117
1117
(function (angular) {
@@ -1130,7 +1130,7 @@ The authorization header should be `Bearer [token]`.
1130
1130
})(angular);
1131
1131
```
1132
1132
1133
-
#### Q. Provider
1133
+
#### Q. ***Provider***
1134
1134
1135
1135
```html
1136
1136
<div class="container">
@@ -1179,7 +1179,7 @@ The authorization header should be `Bearer [token]`.
1179
1179
</script>
1180
1180
```
1181
1181
1182
-
#### Q. Provider with Constant
1182
+
#### Q. ***Provider with Constant***
1183
1183
1184
1184
```html
1185
1185
<div ng-controller="IndexCtrl as vm">
@@ -1244,14 +1244,14 @@ The authorization header should be `Bearer [token]`.
1244
1244
</script>
1245
1245
```
1246
1246
1247
-
#### Q. Component vs Module in AngularJS
1247
+
#### Q. ***Component vs Module in AngularJS***
1248
1248
1249
1249
Components controls views (html). Also communicates with other components and services.
1250
1250
1251
1251
Modules consist of one or more components. They do not control any html. Modules declare which components can be used by components belonging to other modules, which classes will be injected by dependency injector and which component gets bootstrapped.
0 commit comments