Review page edits for 'csintro' project chapters.

This commit is contained in:
ganicke
2017-08-10 10:37:02 -07:00
parent 9cbbd2e99f
commit baefd1149a
2 changed files with 2 additions and 2 deletions

View File

@ -17,4 +17,4 @@ Computers work with _base-2_, which uses binary numbers. Binary numbers only hav
A micro:bits can send a combination of strings and numbers using the Radio blocks. The [Infection](/projects/infection) activity is an example of a thought-provoking group simulation that uses the Radio to send and receive data between micro:bits.
 
## Arrays
Arrays in MakeCode are used to store and retrieve numbers, strings, musical notes, or sprites. Everything in a particular array needs to be the same data type and elements in an array are numbered starting from zero, also called the _index_. Objects can be accessed, changed, added to, or removed from an array using their index. Three common methods of sorting elements in an array are bubble sort,
Arrays in MakeCode are used to store and retrieve numbers, strings, musical notes, or sprites. Everything in a particular array needs to be the same data type and elements in an array are numbered starting from zero, also called the _index_. Objects can be accessed, changed, added to, or removed from an array using their index. Three common methods of sorting elements in an array are bubble sort, selection sort, and insertion sort.