Find the largest of three given integers
Write a JavaScript function to accept 3 integers, find the largest of three given integers.
Sample Code:
def findTheLargest(a, b, c):
# Enter your logic here...
Examples:
Input: 1,2,3
Output: 3
Explanation: Integer 3 is the largest of three given integers.
Input: 100,-200,50
Output: 100
Explanation: Integer 100 is the largest of three given integers.