hym1224 / js

0 stars 0 forks source link

tip #5

Open hym1224 opened 6 years ago

hym1224 commented 6 years ago

from https://juejin.im/entry/5981c33e6fb9a03c445dc6d7

hym1224 commented 6 years ago

implements the go to from http://air.ghost.io/js-things-i-never-knew-existed/amp/


block : {
  const num = Math.random();
  if (num <= 0.5)  break block;
  console.log('num is greater than 0.5');
}