Here is the code snippet for a service in an Angular project:
@Injectable()
export class FetchDataService {
fetch(link){
console.log('This is a ${link}');
}
}
In my component, I am invoking this method with a string parameter.
Upon checking the console, the output shows: The link is ${link}