mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 11:36:23 +00:00
11 lines
162 B
Markdown
11 lines
162 B
Markdown
---
|
|
date: 20201112
|
|
id: fe4897ce-ad46-4279-a35b-9e7958645f9c
|
|
title: JavaScript Exponentation Operator
|
|
---
|
|
|
|
# Syntax
|
|
|
|
``` javascript
|
|
console.log(6 ** 2); // 36
|
|
```
|