wiki/content/20201112110203-javascript_exponentation_operator.md

12 lines
164 B
Markdown
Raw Normal View History

2024-05-06 20:40:05 +00:00
---
2024-10-30 17:34:11 +00:00
date: 2020-11-12
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
```