- Overview
- Transcript
2.7 Strict Mode
Strict mode is a useful execution mode for JavaScript that can prevent many errors and should always be used. In this lesson we’ll learn all about it.
Syntax
use strict;
1.Introduction2 lessons, 07:42
1.1Introduction02:12
1.2Setup05:30
2.Language Fundamentals8 lessons, 1:00:53
2.1Variables06:33
2.2Data Types11:28
2.3Arithmetic, Assignment, and Comparison Operators10:24
2.4Unary, Logical, Comma, and Spread Operators09:02
2.5Operator Precedence03:50
2.6Reserved Words04:17
2.7Strict Mode04:34
2.8Functions10:45
3.Data Structures5 lessons, 22:52
3.1Arrays04:29
3.2Objects04:30
3.3Sets04:57
3.4Maps04:21
3.5Weak Maps and Weak Sets04:35
4.Controlling Program Execution7 lessons, 37:06
4.1Conditionals07:49
4.2Switch Statements04:41
4.3The For Loop06:39
4.4The `for .. in` Loop05:17
4.5The `for .. of` Loop04:02
4.6Iterators05:03
4.7While Loops03:35
5.Using JavaScript13 lessons, 1:44:36
5.1Working With Strings09:32
5.2Template Literals05:46
5.3Working With Numbers06:57
5.4Working With Arrays12:53
5.5Iterating and Transforming Arrays07:33
5.6Working With the Object Type13:55
5.7Object Literal Extensions06:45
5.8Working With Object Instances06:45
5.9Getters and Setters05:00
5.10Custom Objects11:28
5.11The `Math` API04:54
5.12Working With Dates and Times08:10
5.13The `Array` Constructor04:58
6.Functions8 lessons, 56:07
6.1The `this` Object06:15
6.2Working With Functions10:11
6.3Scope07:37
6.4Arrow Functions06:59
6.5Generator Functions08:13
6.6Closures05:00
6.7Prototypes06:26
6.8Default and Rest Parameters05:26
7.Miscellaneous6 lessons, 52:39
7.1Destructuring Assignments08:09
7.2AJAX08:30
7.3Regular Expressions10:51
7.4More About Regular Expressions08:38
7.5Classes06:48
7.6ES Modules09:43
8.Working With the DOM6 lessons, 37:39
8.1Selecting HTML Elements05:02
8.2Manipulating HTML Elements07:40
8.3DOM Traversal05:25
8.4Adding and Removing Elements04:45
8.5Creating Elements and Other Nodes04:39
8.6DOM Events10:08
9.Web APIs4 lessons, 17:41
9.1The Selector API03:03
9.2Geolocation05:29
9.3Web Storage05:24
9.4Web Workers03:45
10.Asynchronous JavaScript5 lessons, 26:23
10.1Promises09:52
10.2Promise Chaining05:11
10.3The async Keyword03:21
10.4The await Keyword04:04
10.5More About async and await03:55
11.Conclusion1 lesson, 00:43
11.1Conclusion00:43
2.7 Strict Mode
Hi folks. In this lesson, we are going to learn about what strict mode is, and why you must almost always use it. Strict mode is a slightly different mode of JavaScript execution, which is stricter than regular or non strict code. And it effects how some features of the language are used. Non strict JavaScript is often referred to as sloppy mode. Strict mode was introduced a long time ago to improve some of JavaScript's downsides. These days, strict mode should almost always be used, and in some cases will be enforced automatically, like when using ES modules, which we'll come back and look at much later in the course. It's recommended to always use strict mode because all modern browsers support it and because it causes some silent errors to actually throw an error. It also prevents global variables from being created if we accidentally forget to use var, let or const when declaring a variable. And it has a host of other benefits, also. So to use it, we just need to add the string 'use strict' as the first line inside either a function or a file. It's recommended to use it inside a function, because there can be problems if we concatenate strict and non strict files together. And concatenating JavaScript files together is a very common part of most JavaScript's build processes. Generally, it's easy to use strict mode inside a function because generally, all of a code inside a file will be wrapped inside an immediately invoked function. Aside from maybe some licensing information in the comment at the top of the file, or when we're using AS modules, generally, all the script files that we'll create will wrap all of their code inside a function, like this. So now all of the code that we add to this file, qhich will be added inside the function, will be run in strict mode. This type of function is known as an immediately invoked function expression, or IFFE for short. So strict mode does a number of things for us. First of all, it throws errors when we try to override certain globals instead of just failing silently, like it would do in sloppy mode. The built-in read-only Globals are none, undefined and infinity. Usually, if we try to write these it's because of an error in our code. So an error message is much more useful to us than a silent failure. In this case we see an error message saying that we can not assign to the read only property NAN, which is a property of the global object window. In non strict mode, it just comment out the Uscript directed. Let's get back to the browser again. This time we don't see the error message. However, trying to overwrite NaN will have failed. So NaN still has the value, N-a-N, which is a special value, trying to overwrite the value with a string didn't work, but we didn't see an error message. So that's one of the most important benefits of using strict mode. It throws errors instead of failing silently. Strict mode also prevents the use of the with operator, and that's why we didn't cover it earlier when we looked operators. Additionally, strict mode adds some new reserved words to the language. And these are package, protected, implements, interface, private, and static. As I said, strict mode was introduced a very long time ago, but it was only recently that some of these new reserved words became useable, like private and static. These are used with JavaScript classes, which we will come back and look at later in the course. So in this lesson, we've learned about what strict mode is, and why we should always use it when applicable. In the next lesson, we're going to look at one of the most fundamental aspects of JavaScript, the function. Thanks for watching.