Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions NodeJS/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ This main file, `geektrust.js` should receive in the command line argument and p
For e.g your `geektrust.js` file will look like this

```javascript
const filename = process.argv[2];
const filepath = process.argv[2];
// parse the file and process the command
// print the output
```
Expand Down Expand Up @@ -53,7 +53,7 @@ This main file, `geektrust.js` should receive in the command line argument and p
For e.g your `geektrust.js` file will look like this

```javascript
const filename = process.argv[2];
const filepath = process.argv[2];
// parse the file and process the command
// print the output
```
Expand Down