Đối với điều này, bạn cần sử dụng điều kiện if để so sánh các cặp sinh ba.
Giả sử chúng tôi đang chuyển các giá trị sau -
35, 36, 37, 33, 48, 50
Ví dụ
Sau đây là mã -
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));
Để chạy chương trình trên, hãy sử dụng lệnh sau -
node fileName.js.
Đây, tên tệp của tôi là demo242.js.
Đầu ra
Kết quả như sau -
PS C:\Users\Amit\javascript-code> node demo242.js [ '1', '1' ]