Skip to content

Commit

Permalink
small finxes and links
Browse files Browse the repository at this point in the history
  • Loading branch information
mnstri committed Sep 16, 2023
1 parent a0e3583 commit c72334a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions content/courses/computational-art-and-design/_index.md
Expand Up @@ -21,6 +21,7 @@ draft: false
- [Available through Aalto](https://primo.aalto.fi/permalink/358AALTO_INST/ha1cg5/alma999439982606526)
- [Generative Gestaltung](http://www.generative-gestaltung.de/2/)
- [Nature of Code](https://natureofcode.com/)
- [Awesome Creative Coding](https://github.com/terkelg/awesome-creative-coding)

## Content

Expand Down
Expand Up @@ -44,7 +44,7 @@ weight: 899
### Pure Data

- AXM-E6003 Composing with New Musical Instruments (Sound in New Media)
- AXM-E6004 Deep Learning with Audio (Sound in New Media)
- AXM-E6004 Deep Learning of Audio (Sound in New Media) (also uses Python)
- AXM-E6009 Procedural Audio (Sound in New Media)

### Python
Expand Down
Expand Up @@ -25,7 +25,7 @@ let arr = new Array();
let arr = [];
```

Ususally, you will use the second option and you can already add elements to the array.
Usually, you will use the second option and you can already add elements to the array.

```js
let cities = ["Helsinki", "Espoo", "Vantaa"];
Expand Down Expand Up @@ -81,7 +81,7 @@ console.log(cities); // now ["Helsinki", "Espoo", "Vantaa", "Inari"]

### Length of the array (length)

You can get the total length of the array using ```length````
You can get the total length of the array using `length`

```js
let cities = ["Helsinki", "Espoo", "Vantaa"];
Expand Down

0 comments on commit c72334a

Please sign in to comment.