Welcome aboard! We are happy you are here and wish you good net-raft!
<!DOCTYPE html>
<html>
<script src="https://www.w3schools.com/lib/w3.js"></script>
<script>
var myObject= {"mytech":[
{"tech":"javascript","side":"client"},
{"tech":"php","side":"server"},
{"tech":"w3.js","side":"client"}
]};
</script>
<body>
<select id="myselect">
<option w3-repeat="mytech">{{tech}}</option>
</select>
<script>
w3.displayObject("myselect", myObject);
</script>
</body>
</html>
The most helpful W3.JS solutions