# Gör en beräkning sann
```
tags: math, logic
difficulty: easy
index: 34
status: alpha
author: krm
created: 2019-01-01
salution: To find the way to the truth
copy: true
```

Kopiera koden nedan. Byt ut “+” mot en annan operator. Du får använda 
“&&” och “||” varsin gång och programmet ska skriva ut *true*.

```js
const A = true;
const B = false;
const C = false;

console.log(A+B+C);
```
