Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
</body>
</html>
 
/*
 * Comma operator tip
 * Read full tip -> http://...
 *
 * jstips.co
 */
function a(){console.log('a'); return 'a';} 
function b(){console.log('b'); return 'b';} 
function c(){console.log('c'); return 'c';}
console.log('Test with ()')
console.log((a(), b(), c()));
console.log('Test without ()')
console.log(a(), b(), c());
Output 300px

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

Dismiss x
public
Bin info
loverajoelpro
0viewers