Q-Apps-Utils/Strings/printFunctions.ts
2023-10-09 12:44:15 -06:00

5 lines
139 B
TypeScript

export const printVar = (variable: object) => {
const [key, value] = Object.entries(variable)[0];
console.log(key, " is: ", value);
};