Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
Trending News
Help IT Work not done: Create an object and then create an instance....?
Create an object and then create an instance of that object for your first name, second name and age (with the values given to it) then print it with document write method.
(! Hint document.write( “I am” + (object value created for first name) + (object value created for second name) + “I am”+(object value created for age) + " years old.")
Create an object and then create an instance of that object for your first name, second name and age (with the values given to it) then print it with document write method.
(! Hint document.write( “I am” + (object value created for first name) + (object value created for second name) + “I am”+(object value created for age) + " years old.")
yes it is Javacript
1 Answer
- Anonymous1 decade agoFavorite Answer
document write is javascript...what language?
Java
String Fname="Joe";
String Lname="Johnson";
int age= 15;
System.out.println("“I am” + Fname + " " + Lname + “ I am ”+age + " years old.");
Source(s): String is an object