```js // Getting details on a Threads user and outputting it to the console
const getUserDetails = async (username) => {
let userInfo = await threads.getUserData(username);
console.log(
"",
Name: ${userInfo.full_name}\n
,
Bio: ${userInfo.biography}\n
,
ID: ${userInfo.user_id}\n
,
Followers: ${userInfo.follower_count}\n
,
Website: ${userInfo.bio_links[0].url}
);
}
getUserDetails("Gisgar3");
```