日間チャレンジ
2002 ワード
ハッピー日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'
Reference
この問題について(日間チャレンジ), 我々は、より多くの情報をここで見つけました https://dev.to/hellodevworldblog/day-6-challenge-1j78テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol