> For the complete documentation index, see [llms.txt](https://cagataydev.gitbook.io/cagataycali/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://cagataydev.gitbook.io/cagataycali/javascript-nedir/sayilar.md).

# Sayılar 🐥

#### Numbers ( Sayılar )

```javascript
let n = 175 // Tamsayı olabilir, int
n = 17.535 // Ondalıklı sayı olabilir, floating point
```

Sayı tipi integer ve floating point sayılarını temsil eder.

{% tabs %}
{% tab title="Çarpma" %}

```javascript
const a = 17;
const b = 5;

const total = a * b;

console.log(total); // 85
console.log(typeof total); // number
```

{% endtab %}

{% tab title="Bölme" %}

```javascript
const a = 255;
const b = 14;

const total = a / b; // 

console.log(total); // 18.214285714285715
console.log(typeof total); // number
```

{% endtab %}

{% tab title="Toplama" %}

```javascript
const a = -28;
const b = 84;

const total = a + b;

console.log(total);
console.log(typeof total);
```

{% endtab %}

{% tab title="Çıkarma" %}

```javascript
const a = 175;
const b = 53;

const total = a - b;

console.log(total);
console.log(typeof total);
```

{% endtab %}
{% endtabs %}

Değişkenlere tanımlanan sayısal verileri doğrudan kullanarak matematiksel işlemleri `*`  , `/`  , `+`  , `-`  yapabiliriz.
