FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

Syntax Corrections by vishal-dcode · Pull Request #1 · coderdost/JavaScript-Course-2023 · GitHub

Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension .md  (1) All 1 file type selected
Viewed files
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Unified
Split
Hide whitespace
Diff view
Unified
Split
Hide whitespace
20 changes: 5 additions & 15 deletions README.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
Original file line number Diff line number Diff line change
Expand Up @@ -372,9 +372,7 @@ let airplane = {
ratings: 4.9,

book(passenger, flightNum) {
console.log(
`${passenger} Booked flight in ${this.flightName} with flight Number ${this.atacode}${flightNum}`
);
console.log(`${passenger} Booked flight in ${this.flightName} with flight Number ${this.atacode}${flightNum}`);
},
};

Expand Down Expand Up @@ -447,12 +445,7 @@ _[From video lecture 6.2]_

```html
<form action="" class="testForm">
<input
type="password"
name=""
class="inputPass"
placeholder="Enter Password"
/>
<input type="password" name="" class="inputPass" placeholder="Enter Password" />

<input type="submit" value="Check Password" />
</form>
Expand Down Expand Up @@ -1161,13 +1154,9 @@ console.log(name, age);
_[From video lecture 12.3]_

```js
let nums = [5, 7, 4, 9, 2, 8];

let nums = [5,7,4,9,2,8];



let newNums = "store Shallow copy of nums inside newNums variable")

let newNums = 'store Shallow copy of nums inside newNums variable';
```

**12.5:** You have given an array as below . Create a function which accept **multiple** elements as an argument and return last **4** element of the array
Expand Down Expand Up @@ -1322,6 +1311,7 @@ let set = new Set[(1, 2, 3, 2, 1, 3, 4, 12, 2)]();
output;

let arr = 'Do something here to convert....';
console.log(arr);
```

**Question 8:** Guess the **Output** and Explain Why?
Expand Down

Back | FazBrowse Home | New Git URL