An open API service indexing awesome lists of open source software.

https://github.com/anmolsukki/js-jonas


https://github.com/anmolsukki/js-jonas

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

# js_jonas

1. Logical OR (||)

expr1 || expr2

If expr1 can be converted to true, returns expr1; else, returns expr2.

example:-

```
var a = 0 || 5

console.log(a) // 5
```