${ inning_number + 1 } | R | H | E | |
---|---|---|---|---|
${ boxscore.scores[inning_number].away_runs } | ${ boxscore.awayR } | ${ boxscore.awayH } | ${ boxscore.awayE } | |
${boxscore.scores[inning_number].home_runs } | ${ boxscore.homeR } | ${ boxscore.homeH } | ${ boxscore.homeE } |
AB | R | H | RBI | BB | SO | AVG | OBP | SLG | |
---|---|---|---|---|---|---|---|---|---|
${ nameToShort(score['name']) } | ${ score['ab'] } | ${ score['r'] } | ${ score['h'] } | ${ score['rbi'] } | ${ score['bb'] } | ${ score['so'] } | ${ score['avg'] } | ${ score['obp'] } | ${ score['slg'] } |
AB | R | H | RBI | BB | SO | AVG | OBP | SLG | |
---|---|---|---|---|---|---|---|---|---|
${ nameToShort(score['name']) } | ${ score['ab'] } | ${ score['r'] } | ${ score['h'] } | ${ score['rbi'] } | ${ score['bb'] } | ${ score['so'] } | ${ score['avg'] } | ${ score['obp'] } | ${ score['slg'] } |
IP | H | R | ER | BB | SO | HR | ERA | |
---|---|---|---|---|---|---|---|---|
${ nameToShort(score.name) } | ${ score.ip } | ${ score.h } | ${ score.r } | ${ score.er } | ${ score.bb } | ${ score.so } | ${ score.hr } | ${ score.era } |
IP | H | R | ER | BB | SO | HR | ERA | |
---|---|---|---|---|---|---|---|---|
${ nameToShort(score.name) } | ${score.ip } | ${score.h } | ${score.r } | ${score.er } | ${score.bb } | ${score.so } | ${score.hr } | ${score.era } |
${ score.label } ${ (typeof score.value === 'undefined' || score.value == '' ? '' : ' - ') + (typeof score.value !== 'undefined' && score.value != '' ? score.value : '') } |