Date and time note was created$= dv.current().file.ctime
Date and time note was modified$= dv.current().file.mtime

dataview

// asc : for ascending order
 
dv.table(["File Name","Creation date","Tags used"],dv.pages("#frontend or #backend or #web-development")
.sort(page=>page.file.name,"asc")
.map(page =>[page.file.link,page.file.cday,page.file.tags]))

Concepts

What is a virtual view-port ?

The view port for mobile devices are generally render the web-page in increase size i.e. in virtual view port and then shrink down the size accordingly. Some mobile devices and other narrow screens render pages in a virtual window or view port, which is usually wider than the screen, and then shrink the rendered result down so it can all be seen at once.

Communities

Reference

MDN

Related

References

Footnotes