/getmaxlengthstring-sealbb

getmaxlengthstring-sealbb created by GitHub Classroom

Primary LanguageJavaScript

test-getMaxLengthString

ให้เขียน Function ชื่อ getMaxLengthString (arrayOfString) เพื่อ return array ของ String เฉพาะที่มีความยาวของจำนวนตัวอักษรมากที่สุด กรณี arrayOfString มีค่าเป็น null หรือ undefined ให้ return undefined

  • ตัวอย่างเช่น
    1. getMaxLengthString(['hello', 'hi', 'hey']) return ['hello']
    2. getMaxLengthString(['hello', 'hi', 'hey', 'Good Evening', 'Good Morning']) return ['Good Evening', 'Good Morning']
    3. getMaxLengthString(['hi']) return ['hi']
    4. getMaxLengthString(null) return undefined
    5. getMaxLengthString(undefined) return undefined