Write a function that takes an integer minutes and converts it to seconds.

Write a function that takes an integer minutes and converts it to seconds.

Write a function that takes an integer minutes and converts it to seconds.

Example

convert(5) ➞ 300

convert(3) ➞ 180

convert(2) ➞ 120

Javascript

function convert(minute){
    return minute*60;
}
let minutes = 5;
console.log(convert(minutes));