https://github.com/anmolsukki/js-jonas
https://github.com/anmolsukki/js-jonas
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/anmolsukki/js-jonas
- Owner: anmolsukki
- Created: 2020-04-19T17:32:43.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-09-20T16:25:13.000Z (over 4 years ago)
- Last Synced: 2025-02-02T05:41:34.279Z (3 months ago)
- Language: JavaScript
- Size: 1.72 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 || 5console.log(a) // 5
```