Live Console Expression Evaluator Missing

When typing expressions in the Console they are not evaluated live. this is a feature already available in chrome Dev tools, which is very useful…
if for example i type in the following expression

document.querySelector(".container-element");

in chrome it will show the result of the evaluation (the first element with in this class) before pressing Enter, this has two benefits.

  1. if you are typing long chained expressions, you can keep track of the result of each method call and property read.
  2. if the expression is evaluated live then the return type will be known, this (if I’m not wrong) will enable Autocomplete when accessing Object returned by a function call directly on the function call.

@selman we are also big fans of eager evaluation! It is definitely high on our list, but also needs a lot of coordination with the JS team to get it right. We have a bug here that you can follow.

So it’s called eager Evaluation… Thanks for the reply! hope it will be included soon…