get help in general - we have more specialized help rooms here: https://gitter.im/FreeCodeCamp/home
git push origin master
is not working at all
mstellaluna sends brownie points to @hoopsftwgg :sparkles: :thumbsup: :sparkles:
bookofbash sends brownie points to @sjames1958gm :sparkles: :thumbsup: :sparkles:
:star2: 9250 | @sjames1958gm |http://www.freecodecamp.org/sjames1958gm
using a jsonformatter like http://jsbeautifier.org/ helps...
soo u have an array of objects.. each object have a comments field (which is an array of objects too)let allCommentsOfFirstObj = data[0].comments;
{{ }}
in the HTML to grab the data out of the controller
ngFor="dish in Dish"
how you loop in Angular?
for
loop tag) than react where you actually just write a map
function
<table>
<tr *ngFor="let item of lista">
<td>{{item}}</td>
</tr>
</table>
mstellaluna sends brownie points to @moigithub :sparkles: :thumbsup: :sparkles:
:star2: 3757 | @moigithub |http://www.freecodecamp.org/moigithub
item.comments
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Lobster">
<style>
.red-text {
color: red;
font-family:Lobster;
}
p {
font-size: 16px;
font-family: Monospace;
}
</style>
font-family:
, before Lobster;
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Lobster">
<style>
.red-text {
color: red;
font-family:Lobster;
}
p {
font-size: 16px;
font-family: Monospace;
}
</style>
<h2 class="red-text">CatPhotoApp</h2>
font-family: lobster
from the .red-text
class and add it to the `h2
<style>
.red-text {
color: red;
}
p {
font-size: 16px;
font-family: monospace;
}
h2 {font-family: Lobster;}
</style>
chuan9027 sends brownie points to @mstellaluna :sparkles: :thumbsup: :sparkles:
:cookie: 664 | @mstellaluna |http://www.freecodecamp.org/mstellaluna
const images = jsonResponse.elements.map(item => item.spectral_img)
hopperkremer sends brownie points to @cmccormack :sparkles: :thumbsup: :sparkles:
:star2: 1462 | @cmccormack |http://www.freecodecamp.org/cmccormack
obj[key] = string.format(var1 + var2 + var3).ToUpper()
var1 = var1.toUpperCase();
var temp = var1 + var2 + va3
temp = temp.toUpper()
.toUpperCase();
but, yeah.