respond method

respond(promptText, defaultResponse)

When implemented, returns a response from the user on prompting. Your implementation should return null to indicate that the user has not responded to the prompt (i.e. the user has pressed the Cancel button in the prompt window).

respond(promptText: string, defaultResponse: string)
ParameterTypeDescription
promptTextstringPrompt text (i.e. title of the prompt window).
defaultResponsestringDefault user response (i.e. initial value contained in the prompt window).

Returns

User response (i.e. confirmed value contained in the prompt window).

See Also