Exercise 1: Sum of Squares
In this challenge, you need to implement a method which squares the passed variables and returns the sum.
We'll cover the following...
Problem Statement
A constructor function SquareSum(num1,num2,num3) is provided which takes ...
Ask