Answer:
text with a hyperlink to the video website
Explanation:
documents do not auto-upload thumbnails or embedded videos for playback, so external links are pasted there
Answer:
update
Explanation:
a table of contents does not update itself automatically.
Vehicle maintenance is important because without them the vehicle would not function properly and could be a safety hazard. Vehicle safety is important because without it we could end up seriously injured or even killed, vehicles can be very dangerous if handled irresponsible and the proper safety methods are not used.<span />
Answer:
The sort function
Explanation:
Because it will sort all the numbers.
Not entirely sure what you want to achieve, but consider this program:
var a = 'foo';
var b = 'bar';
var c = { first : a, second : b };
console.log(JSON.stringify(c, null, 4));
A json object c is constructed using the values from variables a and b. Is this what you mean?