Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Create an isFrom function, that can identify Western Cape and Natal registration numbers. Using 2 parameters, one for the registration number and the other for
Create an isFrom function, that can identify Western Cape and Natal registration numbers. Using 2 parameters, one for the registration number and the other for the location indicator, you need fewer functions to identify registration number locations.
var fromPaarl = isFromPaarl('CJ 98912); var fromBellvile = isFromBellville('CJ 98912); var fromCapeTown = isFromCapeTown('CA 98912); //can be replaced with var fromPaarl = isFrom('CJ 98912,CJ);// returns true var fromBellvile = isFrom('CJ 98912,CY ' );// returns false var fromBellville = isFrom( CY874324,CY ' );// returns true var fromCapeTown = isFrom('CY 874324,CA);// returns true
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started