← Back to Lab

Junior vs Senior vs AI

Can you spot the difference? Test your vibe detection skills.

Question 1 of 5
JavaScriptFunction to check if a user is an admin
function checkAdmin(user) {
  if (user && user.roles && user.roles.includes('admin')) {
    return true;
  } else {
    return false;
  }
}

Who wrote this?