選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

abcderian.js 234B

12345678910111213141516
  1. 'use strict'
  2. function isAbecedarian (word) {
  3. word = word.toLowerCase();
  4. for (let i = 0; i < word.length -1; i++) {
  5. if (word[i] > word[i + 1]) {
  6. return false;
  7. }
  8. }
  9. return true;
  10. }
  11. console.log(isAbecedarian('abdest'));