You need to understand the reason, to avoid "cargo-cult programming." Marking strings as const makes a performance difference because you no longer need to copy the string to the new routine. If it knows you aren't going to change it, it can copy a pointer to the string, like it would for a var parameter, which is only 4 bytes instead of however long the string is. This is safe to do since the compiler enforces the "this variable will not be changed" constraint.
For ordinals, which are usually 4 bytes or less, there's no performance gain to be had. Using const as optimization only works when you're using value types that are larger than 4 bytes, such as strings, arrays or records. And if you plan to modify the string in a temporary variable then it'll have to be copied anyway inside the function body, so you're not actually saving anything. You'd have an easier time just passing it without the const in that particular case, which causes it to send a copy of the string that's safe to modify because it won't be copied back.