Skip to content

Instantly share code, notes, and snippets.

@talha08
Last active November 14, 2018 19:14
Show Gist options
  • Save talha08/d59efccf7728e506a4561524c9718023 to your computer and use it in GitHub Desktop.
Save talha08/d59efccf7728e506a4561524c9718023 to your computer and use it in GitHub Desktop.
console.warn('test')
console.info('test')
console.log('test')
console.error('test')
console.trace('test')
console.count('test')
console.group('test')
console.log('dryds5ydery xdrse test')
console.groupEnd()
console.time('test111')
console.timeEnd('test111')
console.groupCollapsed();
console.log("Hello again, this time inside a collapsed group!");
console.groupEnd()
console.log('test')
console.table(["Audi", "Volvo", "Ford"]);
let test = [
{name:'Talha', age:12},
{name:'Masiur', age:122},
{name:'Nishi', age:1222},
{name:'Preom', age:14},
]
console.table(test)
console.clear()
console.log('again console')
console.log("%c%s",
"color: red; background: yellow; font-size: 24px;",
"WARNING!");
var cssbiz = 'background: url(http://demo.icanbecreative.com/animate-along-svg-path/svg-animate-along-path-600.gif) left top no-repeat; font-size: 260px;';
console.log('%c ', cssbiz);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment