jess5609 jess5609 25-04-2022 Computers and Technology contestada Identify the calculation performed by the following code. function calcArea(length, width) { var rectArea = length*width; return rectArea; } var x = 8; var y = 6; calcArea(x, y); a. 48 b. 96 c. 28 d. 56