Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialSayed Hamza Ahmed
1,349 Pointsi am not able to initialize
i have declared a string but not able to initialize it please help
String[] sports = { "Basketball", "Baseball", "Tennis" };
String bestSport="";
1 Answer
Chase Marchione
155,055 PointsHi Sayed,
Arrays are said to start at 0, in the sense that the first element is said to be at the '0th place' of the array. Square bracket notation ([]s) are used to represent arrays, and adding a number, or 'index', inside of those brackets indicates which place in the array we are interested in pulling a value from.
Thus, the following code would store "Basketball" in the bestSport String variable:
String[] sports = { "Basketball", "Baseball", "Tennis" };
String bestSport = sports[0];
Hope this helps!
Sayed Hamza Ahmed
1,349 PointsSayed Hamza Ahmed
1,349 PointsThank you so much CJ appreciated :D