I want to store select default value if user not touch it in ReactJs. How is that possible?
<select onChange={this.valSelected.bind(this)}>
    {currencies.map(function(name, index){
        return <option value={name}>{name}</option>;
    })}
</select>
and
valSelected(event){
    this.setState({
        valSelected: event.target.value
    });
}
 
     
     
    