👉 In the context of computer science, an "errant" object refers to a variable that is not being used. An "errant" function can also refer to a code segment where one or more lines are missing, leading to undefined behavior. For example: ``` int main() { int errant = 123; // Errant line } ``` In this case, the `errant` variable is not being used in the program.