题解 | #判断版本#

判断版本

https://www.nowcoder.com/practice/dcc4b011c86c454aa58cb1790a8cb760

const _shouldUpdate = (oldVersion, newVersion) => {
    // 补全代码
    let oldV = oldVersion.toString().split('.');
    let newV = newVersion.toString().split('.');
    for (let i = 0; i < 3; i++) {
        if (newV[i] > oldV[i]) {
            return true
        }
    }
    return false;
}

全部评论

相关推荐

想润的芹菜人狠话不多:把其中一个老总放中间都会得罪另一个
点赞 评论 收藏
分享
点赞 1 评论
分享
牛客网
牛客企业服务