wiki/content/20201116163925-infinity.md

19 lines
298 B
Markdown
Raw Normal View History

2024-05-06 20:40:05 +00:00
---
2024-10-30 17:04:36 +00:00
date: 20201116
2024-05-06 20:40:05 +00:00
id: fd09c3db-f05d-4df2-9815-7ec4f88e341b
title: Infinity
---
# Description
Infinity and -Infinity represent positive and negative infinities
# Syntax
``` javascript
console.log(Infinity - 1)
console.log(Infinity + 1)
console.log(-Infinity - 1)
console.log(-Infinity + 1)
```