I'm extremely new to javascript and dat.gui so bear with me. I'm wondering how to create a drop down menu with a default value at the top:
so i have something like:
gui.add(text, 'language', ['english','spanish','french']);
How could I make that drop down say something like "Select Language" by default before actually selecting a value?
thanks!