Code Monkey home page Code Monkey logo

Comments (4)

yysun avatar yysun commented on June 4, 2024

The map function returns an array of string, not a string. String interpolation ${array} converts the array into string with ",".

`${[1,2,3].map(t=>t)}`  // "1,2,3"
`${[1,2,3].map(t=>t).join('')}` // "123"

You can fix it bu using array join function:

${triangles.map(t => `<polygon id="${t.id}" . . . />`).join('')}

BTW, I really liked your carousel example.

from apprun.

jkleiser avatar jkleiser commented on June 4, 2024

Thanks. The .join('') did the trick. (I will update the online file tomorrow.)
I really like your AppRun. The ability to make a small toy app like my carousel with everything in one file, using no build tools at all, is something I value. I can even test it directly in my favourite editor, BBEdit, and see changes immediately. I look forward to digging deeper into AppRun.

from apprun.

yysun avatar yysun commented on June 4, 2024

Thank you. You have done a perfect AppRun app. Can I get your permission to twitter the carousel example and link it from README?

from apprun.

jkleiser avatar jkleiser commented on June 4, 2024

Sorry for the delay. Yes, feel free to twitter and link. However, maybe it would be smarter if you grabbed a copy and included it somewhere where you have control. I have no immediate plan to remove it from "my" folk.uio.no site; I just don't know how long I will have access to my part of it.

from apprun.

Related Issues (20)

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.