text = '<b class="1">data1</b><br>';
document.write(text);
text = '<b class="2">data2</b><br>';
document.write(text);
text = '<b class="3">data3</b><br>;
document.write(text);
text = '<b class="1">data1</b><br>';
text1 = '<b class="2">data2</b><br>';
text2 = '<b class="3">data3</b><br>;
text[1] = '<b class="1">data1</b><br>';
document.write(text[1] );
text[2] = '<b class="2">data2</b><br>';
document.write(text[2] );
text[3] = '<b class="3">data3</b><br>;
document.write(text[3] );