Detect which boxed primitive type a value represents. This tiny utility helps determine if a variable is a Number, String, or Boolean object, rather than a primitive. It returns the constructor name as a string or undefined if the value is not a boxed primitive. Useful for accurately differentiating between primitive types and their object counterparts in JavaScript.