|
var text_to_show = "Hello!"; |
|
|
|
//var array = [ 11, 22, 33, 44 ]; |
|
//var array = [ "eleven", "twenty-two", "thirty-three", "fourty-four" ] |
|
//var some_number = 44; |
|
//var array = [ 11 , 22 , 33 , some_number , text_to_show ]; |
|
//text_to_show = array[0] |
|
|
|
//var apple = { color: "green", variety: "Granny Smith", taste: "Fantastic!" } |
|
//var description_of_apple = "The " + apple.variety + " was " + apple.color + " and tasted " + apple.taste; |
|
//text_to_show = description_of_apple; |
|
|
|
//var some_number = 1; |
|
//if (some_number < 10) { |
|
// text_to_show = n; |
|
//} |
|
|
|
//console.log(description_of_apple); |
|
|
|
|
|
|
|
|
|
|
|
//----- |
|
document.getElementById("box").innerHTML = text_to_show; |
|
//d3.select("#box").text(my_text); |