0

js 配列に if ステートメントを追加する方法を見つけようとしています。省略形の条件が機能するのではないかと考えていましたが、運がありません。これが私が持っているものです。

値が空でない場合にのみ配列を含めようとしています。

gross1 = document.getElementById('gross1').value;
profit1 = document.getElementById('profit1').value;

gross2 = document.getElementById('gross2').value;
profit2 = document.getElementById('profit2').value;

gross3 = document.getElementById('gross3').value;
profit3 = document.getElementById('profit3').value;

function drawVisualization() {
var wrapper = new google.visualization.ChartWrapper({
          chartType: 'ColumnChart',
          dataTable: [['', 'Sales', 'Cost of Goods'],
                      ['Product 1', parseInt(gross1), parseInt(profit1)],
                        if(gross2 != '' && profit2 != ''){
                      ['Product 2', parseInt(gross2), parseInt(profit2)],
                        }elseif(gross3 != '' && profit != ''){
                      ['Product 3', parseInt(gross3), parseInt(profit3)]
                      }],
4

0 に答える 0