method Console.tableprivateConsole.table(tabularData?: any,properties?: string[],): voidDeprecatedDisplays tabular data as a table ExamplesExample 1 console.table([ { name: 'John', age: 30 }, { name: 'Jane', age: 25 } ]); ParametersoptionaltabularData: anyData to be displayed in table format optionalproperties: string[]Array of property names to be displayed Return Typevoid