Summary: Here is the multiple choice portion of the practice test. Please note your answers on paper for now.
Homework: Complete the practice test by Tuesday.
Summary: Here is the multiple choice portion of the practice test. Please note your answers on paper for now.
Homework: Complete the practice test by Tuesday.
Summary: Basic Recursion Example (mySort)
function flattenArray(nestedArray) {if (!Array.isArray(nestedArray)) {return [nestedArray];} return nestedArray.reduce(function(accumulator, currentValue) {if (Array.isArray(currentValue)) {return accumulator.concat(flattenArray(currentValue));} else {return accumulator.concat([currentValue]); }}, []);}
Homework: ….
Summary: Today’s activity.
Summary: Today’s Activity “Creative Development”
Read about Creative Development and we fill in the appropriate Vocabulary Terms.
If you have corrections that you would like to make you may use the links below…