Posts by Emanuel De Oliveira Peres • 35 points
2 posts
-
1
votes1
answer1130
viewsQ: How do I know if the last character of a string ends with the letter "a" or "o"?
I would like to make a code that sees if the last character of a string ends with the letter "a" or "o" to identify whether the word is male or female.
phpasked Emanuel De Oliveira Peres 35 -
2
votes3
answers1523
viewsQ: How to print Javascript variable value in HTML tag?
I’d like to limit the selection of input date this way, but it’s not working. <script type="text/javascript"> var data = new Date(); var dia = data.getDate(); var mes = data.getMonth(); var…