Csaba Kissi Profile picture
Dec 8 โ€ข 9 tweets โ€ข 4 min read
The console log is more powerful than most web developers think.

See below ๐Ÿ‘‡ Image
Go to stackblitz.com and log in.

Stackblitz is an online code editor (I'm not affiliated with them)

You can even use the local Javascript file to test the following.
Open a new Javascript project. Image
Paste the following into the index.js file:

console.warn('This is a warning message');

console.error('This is an error message');

// more down ๐Ÿ‘‡
console.info('This is an informational message');

console.debug('This is a debug message');

let users = [
{ name: 'John', age: 20 },
{ name: 'Jane', age: 22 },
];
console.table(users);

console.log('%c im a bigger text', 'font-size:36px; font-weight: bold'); Image
Next:

1๏ธโƒฃ Click refresh in the integrated browser

2๏ธโƒฃ Open console by clicking in the right bottom corner

Check the output below Image
Check the output below Image
If you like this post, you can bookmark and tag it by replying with @SaveToBookmarks #javasacript #tip

You can view your bookmarks on savetobookmarks.com Image
That's all, guys.

If you found this list useful, consider:

โœ… Follow @csaba_kissi for more content like this
๐Ÿ”” Enable notifications ๐Ÿ‘€
๐Ÿ”„ Retweeting the first tweet.

Thanks for your support, guys! ๐Ÿ™๐Ÿค

โ€ข โ€ข โ€ข

Missing some Tweet in this thread? You can try to force a refresh
ใ€€

Keep Current with Csaba Kissi

Csaba Kissi Profile picture

Stay in touch and get notified when new unrolls are available from this author!

Read all threads

This Thread may be Removed Anytime!

PDF

Twitter may remove this content at anytime! Save it as PDF for later use!

Try unrolling a thread yourself!

how to unroll video
  1. Follow @ThreadReaderApp to mention us!

  2. From a Twitter thread mention us with a keyword "unroll"
@threadreaderapp unroll

Practice here first or read more on our help page!

More from @csaba_kissi

Dec 9
5 interesting APIs you can use for your next project.

Thread ๐Ÿงต๐Ÿ‘‡
1๏ธโƒฃ TheRundown

NFL, NBA, WNBA, MLB, NHL, NCAA Football real-time odds, scores, and schedules all in one place.

rapidapi.com/therundown/apiโ€ฆ
2๏ธโƒฃ Custom QR Code with Logo

Create unique looking QR codes with logo, color and design as PNG, SVG, PDF or EPS.

QR Codes can be generated in high quality for print and professional use cases.

rapidapi.com/qrcode-monkey/โ€ฆ
Read 7 tweets
Dec 9
There are 5 types of loops that are commonly used in JavaScript you should know about ๐Ÿ‘‡ Image
1๏ธโƒฃ For loops:

This type of loop is used to execute a block of code a specified number of times.

It has the following syntax:

for (initialization; condition; increment/decrement) {
// code to be executed
}

e.g.

for (let i = 0; i < 10; i++) {
// code to be executed
}
2๏ธโƒฃ While loops:

This type of loop is used to execute a block of code while a specified condition is true.

It has the following syntax

while (condition) {
// code to be executed
}

e.g.

while (i < 10) {
// code to be executed
i++;
}
Read 10 tweets
Dec 7
Difference between Bootstrap and Tailwind CSS.

What to choose and when? ๐Ÿ‘‡ Image
Bootstrap and Tailwind CSS are both front-end frameworks, meaning they are collections of CSS classes that can be used to quickly apply styling to web projects.
Bootstrap is a very popular framework, and it's been around for a long time.

It provides a wide range of pre-designed components and styles that you can use to create beautiful, responsive layouts quickly.
Read 20 tweets
Dec 6
10 Tools/Libraries for Web developer you should know about.

I would not be surprised if you don't know about 9 of them. ๐Ÿ‘€
{1} ScribeHow (by @ScribeHow)

This screen recording extension instantly turns any procedure into an instructional.

Perfect for: founders, instructors, business people, and more.

Document and share procedures with 93% less effort.

๐Ÿ”— getscribe.how/chrome
{2} HighFlux

Next-Generation Git Client

HighFlux transforms your development: it lets you focus on coding and collaborate with your team in real-time

๐Ÿ”— highflux.io
Read 12 tweets
Dec 4
๐Ÿ—๏ธ The Tailwind CSS components site update.

This is the preview of the home page with already added components.

More components/themes will come almost daily. #buildinpublic

thoughts ๐Ÿ‘‡๐Ÿ’ฌ
Just added another small component.
I just added another component.

Tailwind CSS is just amazing! Image
Read 4 tweets
Dec 2
5 APIs you can use for your next project/side project

Thread ๐Ÿงต๐Ÿ‘‡
1๏ธโƒฃ Domaination .io

Check if a domain is available.

10,000 free requests, including domain availability checks.

Returns WHOIS data, including expiration dates.

rapidapi.com/domaination-doโ€ฆ
2๏ธโƒฃ Temp Email

Temporary Disposable E-mail API.

A service that allows receiving email at a temporary address that self-destructed after a specific time elapses.

rapidapi.com/Privatix/api/tโ€ฆ
Read 7 tweets

Did Thread Reader help you today?

Support us! We are indie developers!


This site is made by just two indie developers on a laptop doing marketing, support and development! Read more about the story.

Become a Premium Member ($3/month or $30/year) and get exclusive features!

Become Premium

Don't want to be a Premium member but still want to support us?

Make a small donation by buying us coffee ($5) or help with server cost ($10)

Donate via Paypal

Or Donate anonymously using crypto!

Ethereum

0xfe58350B80634f60Fa6Dc149a72b4DFbc17D341E copy

Bitcoin

3ATGMxNzCUFzxpMCHL5sWSt4DVtS8UqXpi copy

Thank you for your support!

Follow Us on Twitter!

:(