Calling string methods on numbers or vice versa without type checking.
// Buggy Code
const user = await fetchUser();
const paddedId = user.id.padStart(8, '0');
// TypeError: user.id.padStart is not a function
// Expected: id as string "12345"
// Got: id as number 12345