📜  如何获得表 roblox 中的最小数字 - 任何代码示例

📅  最后修改于: 2022-03-11 14:57:41.081000             🧑  作者: Mango

代码示例1
function GetLowest(table)
    local low = math.huge
    local index 
    
    for i,v in pairs(table) do
        if v < low then
            low = v
            index = i
        end
        return index
    end
end