proposal: let in if parentheses

Ali Rahbari rahbari at gmail.com
Tue Aug 21 19:07:54 UTC 2018


The problem with let, const or var is you can define multiple variable
after them, and it's ambiguous which one must be returned from the
expression. But like comma expression which would return the last part as a
result, the let and const also should return the last assignment as the
result so it can be used inside parentheses

(let a = 1, b = 2) === 2

A common type of code in JS is searching for element and do something with
them:

let e1 = document.getElementById('id1');
if (e1) this.AppendChild(e);

let e2 = document.getElementById('id2');
if (e2) this.AppendChild(e);

This pattern can really help encapsulation and readability;

if (let e = document.getElementById('id1')) this.AppendChild(e);
if (let e = document.getElementById('id2')) this.AppendChild(e);
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.mozilla.org/pipermail/es-discuss/attachments/20180821/7fd185f1/attachment-0001.html>


More information about the es-discuss mailing list