wiki/content/20201112104654-javascript_remainder_operator.md

12 lines
162 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: 33f8272d-6dc4-4a12-b384-0a4cdbd2a24a
title: JavaScript Remainder Operator
---
# Syntax
``` javascript
console.log(314 % 100) // 14
```