D C
2023-05-15 a01eef703c01899a4e5e45b2b1cc8a6eaed1e0ad
1
2
3
4
5
6
7
8
9
import { LightningElement } from 'lwc';
 
export default class Binding extends LightningElement {
    courseName = 'Default';
 
    handleChange(event) {
        this.courseName = event.target.value;
    }
}