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>
 
function generateFakeData(n) {
  const result = [];
  
  const genders = ['female', 'male'];
  const age = ['18to33', '34to48', '49to64', 'other'];
  const day = ['monday', 'tuesday', 'wednesday', 'thursday', 'friday', 'saturday', 'sunday'];
  
  for (let i=0; i<n; i++) {
    result.push({
      gender: genders[Math.floor(Math.random() * genders.length)],
      age: age[Math.floor(Math.random() * age.length)],
      day: day[Math.floor(Math.random() * day.length)]
    });
  }
  
  return result;
}
console.log(generateFakeData(30));
Output 300px

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

Dismiss x
public
Bin info
anonymouspro
0viewers