内容简介:That's nice, but the output of
If you do web development, you've probably used console.log
at least once (or over a thousand times...who's counting?) because that's the best debugging method! But did you know there are other console
methods? Taylor Swift's most recent album folklore is chock full of pensive metaphors, allusions, and symbolism, and this post will liken some of those lyrics to five lesser-known JavaScript console methods.
What exactly is the console?
The console
is a global object letting developers access the debugging console. It has a plethora of methods that make it easier to log statements, variables, functions, errors, and more--oh my!
6 console methods that are like folklore lyrics
1. console.log = "But it would've been fun // If you would've been the one"
console.log
is the most commonly-used method. Used for general purpose logging, it displays the message passed to it in the web console. Did you know you can decorate it with CSS?
console.log("%cWARNING: you will be obsessed with folklore", "font: 2em sans-serif; color: yellow; background-color: red;");
Log is simple, reliable, and gets the job done, but it is overused, taking all the attention from similar console methods that do more. Log would've been fun if it had been the one, or the only console method you need--but as this post will show, you will have more fun with the other console methods!
2. console.table = "I'm a mirrorball // I'll show you every version of yourself tonight"
The table
method takes either an object or an array and logs that input as a table, making it look cleaner: it's like a nicer version of log
. Like a mirrorball, table
can show different versions of the input by accepting an optional parameter columns
to select a subset of columns to display.
Each element in the array (or each enumerable property if the data is an object) will be a row in the table.The JavaScript code below has an object and you can see the output that initially uses log
.
function Album(name, year, numSongs) { this.name = name; this.year = year; this.numSongs = numSongs; } const fearless = new Album("Fearless", 2008, 13); const speakNow = new Album("Speak Now", 2010, 19); const folklore = new Album("folklore", 2020, 16); console.log([fearless, speakNow, folklore]);
That's nice, but the output of table
when given an array looks nicer:
console.table([fearless, speakNow, folklore]);
Accepting a columns
parameter like console.table([fearless, speakNow, folklore], ["name"]);
would show:
You could also pass it (instead of name
) year
or numSongs
--like mirrorball, table
can show you every version of its input!
3. console.assert = "If you never bleed, you're never gonna grow"
console.assert(expression, message)
only prints if the expression is false. Taylor Swift's lyric ""If you never bleed, you're never gonna grow" from the song the 1 agrees--if you never bleed, or fail, or are incorrect sometimes, you will never grow. assert
shows that by being false, you can grow as a developer because you can fix your error that the console so kindly helps you with by making the assertion a nice red.
const numFolkloreSongs = 16; const num1989Songs = 13; console.assert(numFolkloreSongs > num1989Songs, 'folklore has more songs than 1989'); //won't run console.assert(num1989Songs + 3 > numFolkloreSongs, 'the number of songs on 1989 + 3 is not greater than the number of folklore songs');
4. console.time/console.timeEnd = "Time, mystical time/Cutting me open, then healing me fine."
console.time()
creates a timer to see how long some operation takes. It can take an optional parameter of a name or label to distinguish between up to 10,000 timers on a web page.
console.timeEnd()
stops the timer, displaying the result in the console.
Time can be rough--it can cut you open, but it can also heal you and make you feel better.
console.time('sms timer'); let x = 0; while (x < 3) { console.log("They told me all of my cages were mental/So I got wasted like all my potential"); x+=1; } console.timeEnd('sms timer');
If there was no label passed to console.time()
, it would log default instead of sms timer .
5. console.clear: “And if I’m dead to you, why are you at the wake?”
console.clear
is short, sweet, and succinct. It clears the console and in some environments, may print a message like "Console was cleared".
The lyric “And if I’m dead to you, why are you at the wake?” is melancholy but has some bite to it: it is perfect for when you want to end a conversation and, as with clear
, you can start over, start afresh.
6. console.group/console.groupEnd ="And isn't it just so pretty to think all along there was some invisible string tying you to me?"
console.group
signifies the start of an inline message group and console.groupEnd
marks the end of it. If the group contains logs, they are printed as a group, so the format is cleaner and you can more easily tell what the group contains.
It is like there is some invisible string (or console command) tying items in the group together.
console.group("folklore"); console.log("the 1"); console.log("cardigan"); console.log("the last great american dynasty"); console.log("invisible string"); console.log("my tears ricochet"); console.groupEnd(); console.log("outside");
What's next for the console?
There are so many other console methods not included here (in part because they do not relate to Taylor Swift lyrics as much.) For more information on console methods, check out the Mozilla Developer Network docs on web technologies . Let me know your favorite or least favorite folklore songs online or in the comments!
- Twitter: @lizziepika
- GitHub: elizabethsiegle
- Email:lsiegle@twilio.com
Authors
Reviewers
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Spring 3.x企业应用开发实战
陈雄华 / 电子工业出版社 / 2012-2-1 / 90.00元
内容简介 Spring 3.0是Spring在积蓄了3年之久后,隆重推出的一个重大升级版本,进一步加强了Spring作为Java领域第一开源平台的翘楚地位。 Spring 3.0引入了众多Java开发者翘首以盼的新功能和新特性,如OXM、校验及格式化框架、REST风格的Web编程模型等。这些新功能实用性强、易用性高,可大幅降低Java应用,特别是Java Web应用开发的难度,同时有效......一起来看看 《Spring 3.x企业应用开发实战》 这本书的介绍吧!