How to perform 'String Starts With' in TypeScript.
// Task: String Starts With
// Language: TypeScript
function stringStartsWith() {
// Implementation for String Starts With
let result = ...; // Initialize variable
// TODO: Implement core logic here
// Step 1: Prepare data
// Step 2: Process String Starts With
console.log("Done");
}