1. <script>
    2. var arr = [
    3. "添加",
    4. "时候收到的哈哈哈",
    5. "啥开始看阿萨斯",
    6. "是好还是坏"
    7. ]
    8. var res= arr.map(item=>{
    9. if(item.length>3){
    10. item = item.substr(0,3)+"..."
    11. }
    12. return item
    13. });
    14. console.log(res)
    15. </script>