# learn-js-bash

> Command line tool that help you learn basics of JS and memory it everywhere.

Latest version **1.0.1** (published 2019-04-01) · ISC license · 0 weekly downloads

## Install

```sh
npm install learn-js-bash
pnpm add learn-js-bash
yarn add learn-js-bash
bun add learn-js-bash
```

Provides the command `learn-js-bash`.

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2019-04-01 |
| First published | 2019-03-31 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 9.2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Yauheni Slizh |
| Maintainers | kiolk |
| Keywords | npm, js, learn, command, line, study, programming, language |

## Links

- npm: https://www.npmjs.com/package/learn-js-bash
- Repository: https://github.com/Kiolk/learn-js
- Homepage: https://github.com/Kiolk/learn-js#readme
- Issues: https://github.com/Kiolk/learn-js/issues
- npm.io page: https://npm.io/package/learn-js-bash

## Dependencies (1)

- [commander](https://npm.io/package/commander.md) ^2.19.0

## Alternatives

- [@mapbox/jsonlint-lines-primitives](https://npm.io/package/@mapbox/jsonlint-lines-primitives.md) — 5.3M weekly downloads
- [reftools](https://npm.io/package/reftools.md) — 3.5M weekly downloads
- [@hey-api/openapi-ts](https://npm.io/package/@hey-api/openapi-ts.md) — 3.5M weekly downloads
- [@mapbox/geojson-rewind](https://npm.io/package/@mapbox/geojson-rewind.md) — 2.4M weekly downloads
- [turbo-stream](https://npm.io/package/turbo-stream.md) — 1.7M weekly downloads

## Recent versions

- 1.0.1 (latest) — 2019-04-01
- 1.0.0 — 2019-03-31

## README

# learn-js-bash.js
Command line tool that help you learn basics of JS and memory it everywhere.
## Installation
    $ npm install -g learn-js-bash
## Features
* Information about JS operators [-c <operator>]
## Usage 
    $ learn-js-bash -o =
output:
```
============================title===========================
Assignment operators - '='
=========================description========================
    Simple assignment operator is used to assign a value to
 a variable. The assignment operation evaluates to the     
assigned value. Chaining the assignment operator is possible
 in order to assign a single value to multiple variables.
===========================syntax===========================
x = y
==========================examples==========================
// Assuming the following variables
//  x = 5
//  y = 10
//  z = 25

x = y     // x is 10
x = y = z // x, y and z are all 25

```

---
_Source: https://npm.io/package/learn-js-bash · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
