How can a task use the value provided for TargetEnvironment?

Posted by: Pdfprep Category: 701-100 Tags: , ,

A declarative Jenkins pipeline contains the following excerpt:

parameters {

string (name: ‘TargetEnvironment’, defaultValue: ‘staging’, description: ‘Target environment’)

}

How can a task use the value provided for TargetEnvironment?
A . {{TargetEnvironment}}
B . $TargetEnvironment
C . %TargetEnvironment%
D . ${params.TargetEnvironment}
E . $ENV{TargetEnvironment}

Answer: B

Leave a Reply

Your email address will not be published.