wiki/content/20201112110203-javascript_exponentation_operator.md

11 lines
147 B
Markdown
Raw Normal View History

2024-05-06 20:40:05 +00:00
---
id: fe4897ce-ad46-4279-a35b-9e7958645f9c
title: JavaScript Exponentation Operator
---
# Syntax
``` javascript
console.log(6 ** 2); // 36
```