Giter Club home page Giter Club logo

Comments (5)

n4kz avatar n4kz commented on July 23, 2024
var data = {
    value: "0"
};
var data = {
    value: [0]
};

Any of the above will work as you want it. Described behaviour is correct as non-array value in section {{# }} means conditional and zero in js is falsy value.

from stalin.js.

 avatar commented on July 23, 2024

Actually this is an extremely stupid and unintuitive behavior. I dont need an array and i dont need a string. My data structure assumes numbers and i operate on numbers. Zero is a valid value for number. The fact that zero is coerced to false in JS is not an argument, because if i wanted false, i will use false, null or undefined explicitly. Why the fuck should i keep two different sets of same data - one for internal usage and one for template? What is the fucking point of having templates at all?

I know, mustache does the same, but again, i find this completely stupid and unusable in real situation.

from stalin.js.

n4kz avatar n4kz commented on July 23, 2024

You know where fork button is =))

// line
l=function($){return t.call($)==='[object Array]'?$:$?[$]:[]}
// can be like this
l=function($){return t.call($)==='[object Array]'?$:$!==false?[$]:[]}
// or that
l=function($){return t.call($)==='[object Array]'?$:($ || $===0)?[$]:[]}

from stalin.js.

 avatar commented on July 23, 2024

yup, thnx, bro. you know what saves me from being sad =D

from stalin.js.

n4kz avatar n4kz commented on July 23, 2024

=)

from stalin.js.

Related Issues (1)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.