看见微信群里大家在发属羊的 挺有意思的 !
如是 作为一个bigger满满的文艺青年(中年屌丝) 开启了装B模式
在浏览器地址栏输入 javascript:alert('🐏'.repeat(10000))
复制下列代码到浏览器地址栏 回车即可看到效果
`javascript:alert('🐏'.repeat(10000))`
随手写了个脚本:
```javascript
var printSheepCount = function(total){
'use strict'
let str = '';
let tem = '只🐏';
for(let i=0;i<total;i++){
let one = i+tem;
str += one;
}
console.log(str);
}
//1只羊
printSheepCount(1);
//1024只羊
printSheepCount(1024);
//102400只羊
printSheepCount(102400);
```
半夜睡不着 教大家来属羊吧
enjoying !