helloExpressionsSimple.js
import { LightningElement } from 'lwc';
export default class HelloExpr extends LightningElement {
Name = 'Prahlad';
lastName = 'Bandhu';
get uppercasedFullName() {
const fullName = `${this.Name} ${this.lastName}`;
return fullName.trim().toUpperCase();
}
}