Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-2.1.4.js"></script>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
  <p>bccvbchjhgjh</p>
</body>
</html>
 
function random_int(min, max)
{
  var range = max - min;
  return min + Math.floor(Math.random() * range);
}
function random_color()
{
  return 'rgb(' + random_int(0, 255) + ',' + random_int(0, 255) + ',' + random_int(0, 255) + ')';
}
console.log(random_color());
// 忽略下面這行
setInterval(function(){
  
  
$("p")
  .hide()
  .css('color', random_color())
  .show('slow');
console.log($("p").css("color"));  
}, 1000);
// 忽略上面這行
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers