Skip to content

Commit

Permalink
fix: change back the next and prev filenames lost from previous merge
Browse files Browse the repository at this point in the history
  • Loading branch information
akhilalekha committed Apr 27, 2021
1 parent b543c20 commit 0905464
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 19 deletions.
10 changes: 5 additions & 5 deletions website/javascript/datatypes.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
title: 'Introduction To Javascript'
subheading: 'Data types'
next: 'Interaction'
prev: 'Introduction'
title: "Introduction To Javascript"
subheading: "Data types"
next: "interaction"
prev: "introduction"
---

**A value in JavaScript is always of a certain type. For example, a string or a number**.
Expand All @@ -17,4 +17,4 @@ Programming languages that allow such things, such as JavaScript, are called “
// no error
let message = "hello";
message = 123456;
```
```
10 changes: 4 additions & 6 deletions website/javascript/interaction.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
title: 'Introduction To Javascript'
subheading: 'Interaction: alert, prompt, confirm'
next: ''
prev: 'Datatypes'
title: "Introduction To Javascript"
subheading: "Interaction: alert, prompt, confirm"
next: ""
prev: "datatypes"
---

As we’ll be using the browser as our demo environment, let’s see a couple of functions to interact with the user: alert, prompt and confirm.
Expand All @@ -13,5 +13,3 @@ This one we’ve seen already. It shows a message and waits for the user to pres
```javascript
alert("Hello");
```


14 changes: 6 additions & 8 deletions website/javascript/introduction.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
---
title: 'Introduction To Javascript'
subheading: 'What Is Javascript ?'
next: 'Datatypes'
prev: ''
title: "Introduction To Javascript"
subheading: "What Is Javascript ?"
next: "datatypes"
prev: ""
---

Last year, millions of learners from our community started with JavaScript.
Last year, millions of learners from our community started with JavaScript.

Why? JavaScript is primarily known as the language of most modern web browsers, and its early quirks gave it a bit of a bad reputation.

However, the language has continued to evolve and improve.
However, the language has continued to evolve and improve.

JavaScript is a powerful, flexible, and fast programming language now being used for increasingly complex web development and beyond!


0 comments on commit 0905464

Please sign in to comment.