Today I turn 40. Some will say I’ve lived a full life and experienced more things than most. Created value for generations. For me it’s still unfinished business. Time to disrupt another sector. It’s time for the Third Unicorn !!
@mybmc@MumbaiPolice@DGPMaharashtra My Nephew is missing from Saturday evening and not getting any help from anyone please look into it. Let me know if anything else is needed.
Thread for @Uber_India to put a list of drivers who call for asking the drop location and then cancel. There is no way to write a review for them. Hence, this.
There was some recent (and fervent!) discussion around using "array includes(..)" to check if a variable is one of a set of values.
I wrote up some more detailed thoughts/exploration here:
https://t.co/K7lPOgENCw
What do you think: is it fair to call this an emerging idiom?
Parents are getting old so I am getting some things changed/updated in my home for their safety and comfort. This will be a long thread on which I will keep adding things I buy/get fixed for them... 1/n
@ShettyAbhinay@ACTFibernet Can someone help which channel these guy actually respond to.
Internet is down for last 2 days and still I am playing ticket open close with there nonsense app. @ACTFibernet don't stress yourself. I have taken a backup connection so take you months time to fix it.
Mizoram Boy Mistakenly Ran Cycle Over Chicken and Took It to Hospital With All the Money He Had; His Viral Pic Will Melt Your Heart
https://t.co/zoDcUgcqbH
Source : "Latestly" via Dailyhunt
Download Now
https://t.co/gaS254edbU
@vivekanandahr@MotwaniSuhas@bounceshare How do you control when it's parked in building private parking area? After booking user only realise when he walks for few mins to reach at location.
It's good to wear helmet to save your life but you are putting your fellow friend life in threat when you are stoling Bounce helmet #HelmetChor#Bengaluru#bangaloretraffic
Optional chaining is now part of the JavaScript spec!
Instead of checking for the existence of each key in an embedded object and then accessing it, we will get an undefined value and the code won't error out.
TC39 advanced "optional chaining" (different from "nullish-coalescing"!!) to stage 3 as well. Much rejoicing!
// this:
var w = (x && x.y && x.y.z && x.y.z.w);
// becomes:
var w = x ?. y ?. z ?. w;