日間チャレンジ


ハッピー日6!今日は基本に戻ります.この課題は簡単にフロントエンドだけでなくバックエンドに適用することができます.

問題
文字列と数値を受け入れる関数を作成します.この関数は、与えられた文字列を最大長(通過された数)に切り詰めたものを返さなければなりません.文字列が渡された最大長より短い場合、渡された文字列を返します.
Examples:

        truncate('It works on my machine', 8) // 'It works...'
        truncate('It’s not a bug – it’s an undocumented feature', 14) // 'It’s not a bug...'
        truncate('In order to understand recursion, one must first understand recursion', 'In order to understand recursion, one must first understand recursion'.length)           // 'In order to understand recursion, one must first understand recursion'
        truncate('The cheapest, fastest, and most reliable components are those that aren’t there', 82) //'The cheapest, fastest, and most reliable components are those that aren’t there'