remove linksto lessons from references

This commit is contained in:
Tom Ball
2016-06-11 22:28:57 -04:00
parent 5b5cac878b
commit 67ea6c01f2
55 changed files with 1 additions and 221 deletions

View File

@ -44,10 +44,6 @@ num1 = 42
* Don't confuse the assignment operator `:=` with the equality operator `=`, which is used to compare values.
* You can use the assignment operator `:=` with variables of each of the supported [types](/js/types).
### Lessons
[counter](/lessons/counter), [rotation animation](/lessons/rotation-animation), [digital pet](/lessons/digital-pet), [offset image](/lessons/offset-image)
### See also
[local variables](/reference/variables/var), [global variables](/js/data), [types](/js/types)

View File

@ -112,10 +112,6 @@ if (x < 5) {
See the documentation on [Numbers](/reference/types/number) for more information on comparing two Numbers. You can also [compare strings](/reference/types/string-functions) using the `equals` function.
### Lessons
[rotation animation](/lessons/rotation-animation), [digi yoyo](/lessons/digi-yoyo), [love meter](/lessons/love-meter), [zoomer](/lessons/zoomer)
### See also
[if](/reference/logic/if), [while](/js/while), [number](/reference/types/number)

View File

@ -27,10 +27,6 @@ for (let i = 0; i < 10; i++) {
}
```
### Lessons
[jailbreak](/lessons/jailbreak)
### See also
[for](/reference/loops/for), [while](/js/while)