Phone Number

Zachary Anderson
Last updated: 28 Feb 2017
Written for: Lighthouse Studio 9.3

Sjlckxy (1)

Description

Prompts for a phone number in a specified format.

Instructions

  • Line 15 of the footer must be updated with the format of the phone number. Example:
    var phoneFormat = [
    '+1', // prints the text '+1' to the page
    3, // an input that requires 3 digits
    [1, 3], // an input that requires 1 to 3 digits
    [4, '5555'], // an input that requires 4 digits with the placeholder text '5555'
    [2, 3, '55/555'] // an input that requires 2 to 3 digits with placeholder text '55/555'
    ];