I think mine would be json_encode()
. I think it's so cool that a single function can make your data understood by other machines. (I know other machines can interpret different kinds of data, but c'mon...)
How about you? What's your favourite function?
Top comments (36)
Based on usage it's probably
console.log()
orvar_dump()
.At the moment I'm enjoying some JavaScript array methods -
filter
,map
,reduce
.var_dump (); die ()!!!
I usually do like:
die(var_dump());
I stopped doing this simply because I can't do it if I dump multiple variables at once.
But you could do
die(var_dump($res, $res2));
, couldn't you?You can
Really? Wow, #TIL!
Yeah, just like
console.log(var1, var2)
in JSrandom()
functions, there is so much more behind them then we usually think. I can talk hours about entropy and sources, techniques, pseudo algorithms and how can it improve almost any software product.Improve in what way?
As in, some product features can be improved using random (shuffle or generate things), most basic example is chose new 5 news headlines to see from the top 100 articles to an user, each x seconds/page views.
inb4
p e r s o n a l i z a t i o n
🤣
In the way of randomized algorithms
😉
In PHP I always include file with my custom helper functions. These two wrap output with
<pre/>
tags, which allows nice&quick debugging via browser from any class or template code.HA! I have a pre() function too! I use it many, many times a day. Mine has the $obj, but then a title, so if I have multiple pre()s going, I know which is which. Like, pre( $obj, 'This is the user obj');
Love it.
var_masterpiece is also an excellent browser extension too for debugging!
Because it took me almost half a year to realize that it's a function, not a language construct.
describe
s,it
s,beforeAll
s, etc in Jasmine tests without actually caring about the legit expectations yet.typeof(arg);
surprisingly useful
I don't really have a favorite function, because it's all about using the right one to solve a problem. ut I like functions that make things simpler, so I think I'd pick fetch(). Because before, making HTTP requests from JavaScript looked like this
Don't know if it's only a function, but ajax in Javascript is something else: the whole idea of a function connecting asynchronously to a server and retrieving data without the need of recharge the entire page is amazing.
Arrow function 🤓.
this
has never been easier.