我是靠谱客的博主 漂亮摩托,最近开发中收集的这篇文章主要介绍if 条件判断和三元表达式的应用,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

此题来源为codewars上的题目
在这里插入图片描述
我的解答一:使用if进行的判断

function points(games) {
    var points=0
    for(var i = 0;i<games.length;i++){
        console.log(games[i])
        if(games[i].split(':')[0]>games[i].split(':')[1]){
        points+=3
    }
else if(games[i].split(':')[0]<games[i].split(':')[1]){
        points+=0
        }
else{
        points+=1}
        }
        return points
}
console.log(points(["1:1","2:0","3:0","4:0","2:1","3:1","4:1","3:2","4:2","4:3"]))

我的解答二:使用三元表达式的解决方案

function points(games) {
    var points = 0
    for (var i = 0; i < games.length; i++) {
        games[i].split(':')[0] > games[i].split(':')[1] ? points += 3 : games[i].split(':')[0] < games[i].split(':')[1] ?  points += 0 :points += 1
}
return points
}
console.log(points(["1:1", "2:0", "3:0", "4:0", "2:1", "3:1", "4:1", "3:2", "4:2", "4:3"]))

别人的解答一:使用 reduce 函数进行的叠加
reduce方法有两个参数,第一个参数是一个callback,用于针对数组项的操作;第二个参数则是传入的初始值,这个初始值用于单个数组项的操作。需要注意的是,reduce方法返回值并不是数组,而是形如初始值的经过叠加处理后的操作

const points = games => games.reduce((output, current) => {
    return output += current[0] > current[2] ? 3 : current[0] === current[2] ? 1 : 0;}, 0)
console.log(points(["1:1", "2:0", "3:0", "4:0", "2:1", "3:1", "4:1", "3:2", "4:2", "4:3"]))

关于reduce函数,摘抄了 https://www.cnblogs.com/ZengYunChun/p/9684957.html

最后

以上就是漂亮摩托为你收集整理的if 条件判断和三元表达式的应用的全部内容,希望文章能够帮你解决if 条件判断和三元表达式的应用所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(55)

评论列表共有 0 条评论

立即
投稿
返回
顶部