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 trial

JavaScript Angular Basics Angular Components Data Binding

Gary Baren
PLUS
Gary Baren
Courses Plus Student 1,535 Points

Click handler isn't firing

No reaction at all to the click.

I'm using Chrome: Version 69.0.3497.100 (Official Build) (64-bit)

app.component.html:

<h2 (click)="chageEmoji()">Hello World {{activeEmoji}}</h2>

app.component.ts:

import { Component } from '@angular/core';

@Component({
    selector: 'app-root',
    templateUrl: 'app.component.html',
    styleUrls: ['app.component.css']
})
export class AppComponent {
    emoji: string[] = ['😀', '😁', '😂', '🤣'];
    activeEmoji: string;

    changeEmoji() {
        this.activeEmoji = this.emoji[Math.floor(Math.random() * this.emoji.length)];
    }
}

1 Answer

Rebecca Wolf
Rebecca Wolf
1,104 Points

I think you just have to correct the typo in your HTML file (see "chageEmoji" vs the method name in the TS file - "changeEmoji")