สำหรับสิ่งนี้ คุณต้องใช้ if condition เพื่อเปรียบเทียบแฝดสาม
สมมติว่าเรากำลังส่งผ่านค่าต่อไปนี้ -
35, 36, 37, 33, 48, 50
ตัวอย่าง
ต่อไปนี้เป็นรหัส -
function tripletsSolution(first, second, third, fourth, fifth, sixth) { var storedResult = [] if (first > fourth || second > fifth || third > sixth) { storedResult = storedResult + 1; } if (first < fourth || second < fifth || third < sixth) { storedResult = storedResult + 1; } return storedResult.split(''); } console.log(tripletsSolution(35, 36, 37, 33, 48, 50));
ในการรันโปรแกรมข้างต้น ให้ใช้คำสั่งต่อไปนี้ −
node fileName.js.
ที่นี่ ชื่อไฟล์ของฉันคือ demo242.js
ผลลัพธ์
ผลลัพธ์จะเป็นดังนี้ −
PS C:\Users\Amit\javascript-code> node demo242.js [ '1', '1' ]