JavaScript:实现查找整数数组中给定的最小数字算法
/**
* @function FindMin
* @description Function to find the minimum number given in an array of integers.
* @param {Integer[]} nums - Array of Integers
* @return {Integer} - The minimum number of the array.
*/
const findMin = (...nums) => {
if