I have the following code:
{
this.state.listSkills.map(function(habilidade){
return (
<ul className="habilidades">
<li className="habilidade-"{habilidade.value}>
<h2>{habilidade.name}
<div className="barra"><span></span></div>
</h2>
</li>
</ul>
);
})
}
The value of the variable habilidade.value
comes from a dynamic json with a value and a percentage symbol ( %
), example: 10%
.
I need to concatenate the string "habilidade"
with this variable and get the %
to be class="habilidade-10"
. How to do?