Skip to content

Commit 490e339

Browse files
author
Rebecca Murphey
committed
adding attribution
1 parent a2fdb82 commit 490e339

File tree

6 files changed

+24
-18
lines changed

6 files changed

+24
-18
lines changed

content/javascript-101/arrays.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
2-
chapter : "js101"
3-
section: 6
4-
title: "Arrays"
2+
chapter : js101
3+
section: 6
4+
title: Arrays
5+
attribution: jQuery Fundamentals
56
---
67
Arrays are zero-indexed lists of values. They are a handy way to store a set of
78
related items of the same type (such as strings), though in reality, an array

content/javascript-101/conditional-code.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
2-
chapter : "js101"
3-
section: "3"
4-
title: "Conditional Code"
2+
chapter : js101
3+
section: 3
4+
title: Conditional Code
5+
attribution: jQuery Fundamentals
56
---
67

78
Sometimes you only want to run a block of code under certain conditions. Flow control — via if and else blocks — lets you run code only under certain conditions.

content/javascript-101/loops.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
2-
chapter : "js10"
3-
section: "4"
4-
title: "Loops"
2+
chapter : js10
3+
section: 4
4+
title: Loops
5+
attribution: jQuery Fundamentals
56
---
67
Loops let you run a block of code a certain number of times.
78

content/javascript-101/operators.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
2-
chapter : "js101"
3-
section: "2"
4-
title: "Operators"
2+
chapter : js101
3+
section: 2
4+
title: Operators
5+
attribution: jQuery Fundamentals
56
---
67
## Basic Operators
78

content/javascript-101/reserved-words.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
2-
chapter : "js101"
3-
section: "5"
4-
title: "Reserved Words"
2+
chapter : js101
3+
section: 5
4+
title: Reserved Words
5+
attribution: jQuery Fundamentals
56
---
67
JavaScript has a number of “reserved words,” or words that have special meaning in the language. You should avoid using these words in your code except when using them with their intended meaning.
78

content/javascript-101/syntax-basics.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
2-
chapter: "js101"
3-
section: 1
4-
title: "Syntax Basics"
2+
chapter: js101
3+
section: 1
4+
title: Syntax Basics
5+
attribution: jQuery Fundamentals
56
---
67
Understanding statements, variable naming, whitespace, and other basic JavaScript syntax.
78

0 commit comments

Comments
 (0)