<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Thu, Jun 5, 2014 at 2:42 AM, Jonathan M Davis via Digitalmars-d-announce <span dir="ltr"><<a href="mailto:digitalmars-d-announce@puremagic.com" target="_blank">digitalmars-d-announce@puremagic.com</a>></span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><br>
Though I confess what horrifies me the most about dynamic languages is code<br>
like this<br>
<br>
if(cond)<br>
    var = "hello world";<br>
else<br>
    var = 42;<br>
<br>
The fact that an if statement could change the type of a variable is just<br>
atrocious IMHO. </blockquote><div><br></div><div>Yeh, that's possible, but that doesn't look like something anyone with any sense would do.</div><div><br></div><div>The things I found most enjoyable about working on javascript were</div>

<div>1) REPL / fully interactive debugger</div><div>    When you hit a break point you can just start typing regular js code into the console to poke the state of your system.</div><div>    And the convenience of the REPL for seeing what bits of code do as you write them.</div>

<div>2) Duck typing / introspection ability</div><div>    If you have a bunch of objects that have a .width property, and that's all you care about, you can just look for that.  No need to declare an IWidthHaver interface and make all of your objects declare that they implement it.</div>

<div>3) Relative ease of writing tests</div><div>    We used the Closure compiler for the js I worked on, so it wasn't totally wild west.  It has a fair amount of static type checking.</div><div>    But when it comes to tests, it's very convenient to just be able to fake any object by slapping some dummy functions in between curly braces.  For example if I want a fake "IWidthHaver" instance, I just have to write x = { width: 10 }, and I'm done.  Plus I can monkey patch things in tests, replacing whatever method I want with a wrapper that does some custom monitoring before or after calling the real method.  Writing tests for C++ is a pain in the butt in comparison.</div>

<div><br></div><div>--bb</div><div><br></div></div></div></div>