angular js w3school code example
Example 1: javascript use strict
'use strict';
var v = "Hi! I'm a strict mode script!";
Example 2: splice javascript
const months = ['Jan', 'March', 'April', 'June'];
months.splice(1, 0, 'Feb');
console.log(months);
months.splice(4, 1, 'May');
console.log(months);
months.splice(0, 1);
console.log(months);
Example 3: angular javascript
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.7.9/angular.min.js" defer></script>
Example 4: use strict javascript
function doSomething() {
'use strict';
...
}