码迷,mamicode.com
首页 > 移动开发 > 详细

手机号隐藏中间4位变成****

时间:2019-04-25 14:30:47      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:turn   replace   color   hone   let   phone   ace   string   ring   

/**
 * 手机号隐藏中间4位变成****
 **/
export function phone(num) {
  num = "" + num;
  let tel1 =num.replace(num.substring(3,7), "****");
 return tel1;
}

 

手机号隐藏中间4位变成****

标签:turn   replace   color   hone   let   phone   ace   string   ring   

原文地址:https://www.cnblogs.com/mxyr/p/10768116.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!