Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 7f99c56

Browse files
authoredDec 23, 2020
Merge pull request #1 from loiane/master
Master
2 parents 2db3d12 + ec96129 commit 7f99c56

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+6618
-6414
lines changed
 

‎.eslintrc.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@
3232
"prefer-destructuring": ["error", {"object": true, "array": false}],
3333
"padded-blocks": 0,
3434
"no-sparse-arrays": 0,
35-
"array-bracket-spacing": 0
35+
"array-bracket-spacing": 0,
36+
"import/no-named-as-default": 0,
37+
"implicit-arrow-linebreak": 0
3638
}
3739
}

‎README.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Learning JavaScript Data Structures and Algorithms
22
====================================
33

4-
[![Build Status](https://travis-ci.org/loiane/javascript-datastructures-algorithms.svg?branch=third-edition)](https://travis-ci.org/loiane/javascript-datastructures-algorithms)
4+
[![Build Status](https://travis-ci.org/loiane/javascript-datastructures-algorithms.svg?branch=master)](https://travis-ci.org/loiane/javascript-datastructures-algorithms)
55
[![codecov](https://codecov.io/gh/loiane/javascript-datastructures-algorithms/branch/master/graph/badge.svg)](https://codecov.io/gh/loiane/javascript-datastructures-algorithms)
66
[![devDependencies Status](https://david-dm.org/loiane/javascript-datastructures-algorithms/dev-status.svg)](https://david-dm.org/loiane/javascript-datastructures-algorithms?type=dev)
77
[![dependencies Status](https://david-dm.org/loiane/javascript-datastructures-algorithms/status.svg)](https://david-dm.org/loiane/javascript-datastructures-algorithms)
@@ -61,16 +61,16 @@ Source code of **Learning JavaScript Data Structures and Algorithms** book, thir
6161
## Installing and running the book examples With Node
6262

6363
* Install [Node](https://nodejs.org)
64-
* Open terminal/cmd and change directoty to this project folder: `cd /Users/.../javascript-datastructures-algorithms` (Linux/Max) or `cd C:/.../javascript-datastructures-algorithms`
65-
* run `npm install` to install all depencies
64+
* Open terminal/cmd and change directory to this project folder: `cd /Users/.../javascript-datastructures-algorithms` (Linux/Max) or `cd C:/.../javascript-datastructures-algorithms`
65+
* run `npm install` to install all dependencies
6666
* To see the examples, run `http-server html` or `npm run serve`. Open your browser `http:\\localhost:8080` to see the book examples
6767
* Or `cd html/chapter01` and run each javascript file with node: `node 02-Variables`
6868

6969
## Running the examples in the browser
7070

7171
* Right click on the html file you would like to see the examples, right click and 'Open with Chrome (or any other browser)'
7272

73-
* Or open the `examples/index.html` file to easily nagivate through all examples:
73+
* Or open the `examples/index.html` file to easily navigate through all examples:
7474

7575
* Demo: [https://javascript-ds-algorithms-book.firebaseapp.com](https://javascript-ds-algorithms-book.firebaseapp.com)
7676

@@ -100,6 +100,8 @@ Book link - second edition:
100100
Book link - third edition:
101101
- [Packt](https://www.packtpub.com/web-development/learning-javascript-data-structures-and-algorithms-third-edition)
102102
- [Amazon](http://a.co/cbMlYmJ)
103+
- [Chinese version](http://www.ituring.com.cn/book/2653)
104+
- [Brazilian Portuguese version](https://novatec.com.br/livros/estruturas-de-dados-algoritmos-em-javascript-2ed/)
103105

104106
### Found an issue or have a question?
105107

0 commit comments

Comments
 (0)