Files
freeCodeCamp/guide/russian/javascript/standard-objects/math/math-pi/index.md
2018-10-16 21:32:40 +05:30

19 lines
756 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: Math PI
localeTitle: Math PI
---
## Math PI
`Math.PI` является статическим свойством объекта Math. Он представляет собой математическую константу, определяемую как отношение окружности окружности к ее диаметру. Это примерно 3.14149 и часто представляется греческой буквой π.
![pi из pi](https://c1.staticflickr.com/2/1207/3352784321_0d648bec78.jpg)
## Примеры
```js
Math.PI \\ 3.141592653589793
```
#### Дополнительная информация:
[MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/PI)