A-Frame is a HTML-based framework with which you can create VR. This means if you know a little HTML, you can add tags to HTML pages and create a 3D world… examples here
<html>
<head>
<script src="https://aframe.io/releases/1.4.0/aframe.min.js"></script>
</head>
<body>
<a-scene>
<a-box position="1 0 -4"></a-box>
</a-scene>
</body>
</html>
See also though: https://cims.nyu.edu/~kapp/aframep5/ ← A-Frame generation from p5js.
Read more: