1 of 6

Unit 7 - Lesson 3

Parameters and Return Practice

2 of 6

To do: February 1 - What is the output?

var str = "Cardinals";

var str1 = str.substring(3,7);

console.log(str1);

console.log(str1.substring(0,2));

3 of 6

To do: February 1 - What is the output?

var str = "Cardinals";

var str1 = str.substring(3,7);

console.log(str1);

console.log(str1.substring(0,2));

dina

di

4 of 6

Go over homework

  • Complete goFormative - Code.org U7L2 Functions with Parameters and Return Value Investigate

We'll go over test 4-1 tomorrow during class.

5 of 6

Code.org U7 Lesson 3 Functions with Parameters and Returns - Practice

Pair program and complete bubbles 1-8.

6 of 6

Homework

  • goFormative - Code.org U7L03 Functions with Parameters/Return Practice