'use strict'; //論理演算子 const score = 60; const name = 'tanaka'; // if(score >= 50) { // if(name === 'tanaka'){ // console.log('hello!'); // } // } // if (score >=60 && name ==='tanaka') { // console.log('elooh!'); // } // if (score >=60 || name ==='tanaka') { // console.log('llohe!'); // } if (score >=50 && ! name === 'anakat') { console.log('lohel!'); }