mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 11:36:23 +00:00
10 lines
205 B
Markdown
10 lines
205 B
Markdown
---
|
|
date: 2020-11-11
|
|
id: 52bd8a6a-0d4c-4860-b015-333e7f1b7e34
|
|
title: JavaScript ReferenceError
|
|
---
|
|
|
|
``` javascript
|
|
'use strict';
|
|
console.log(notValidVar); // ReferenceError: notValidVar is not defined
|
|
```
|