Posts by Marcelo Junior • 58 points
2 posts
-
0
votes1
answer576
viewsA: Use javascript inside an EJS file to display array information
For processing you use <% %>, and for printing you use <%= %>. Then it’ll stay that way: <% for(let i = 0; i < 10; i++) { %> <%= log[i] %> <% } %>…
-
4
votes1
answer130
viewsQ: How do I save read-only data? Should I use Sqlite in this case?
I’m developing an app (a widget actually) that shows some sentences in home user. I have about 1000 sentences of approximately 150 characters, how will I store it? In this case the use of DB is…