An article in Search Engine Land comments that Google Search is currently suffering a de-indexing problem: in other words, some web pages are not appearing in Google search. Read the article here:
https://searchengineland.com/googles-de-indexing-issue-still-not-fully-resolved-but-google-is-working-on-it-315070 .
Turning A Date Into A Folder Path – Node
This short code segment turns today’s date into a folder path. For example, today’s date of April 2, 2019 would be turned into 2019/04/02. I use it for categorizing date related documents into appropriate folders within GCS.
var datestamp_obj = new Date( (new Date()).getTime() + (-6) * 3600 * 1000 );
var datestamp_slash = datestamp_obj.getFullYear() + "/";
datestamp_slash += datestamp_obj.getMonth().toString().padStart(2, "0") + "/" + datestamp_obj.getDate().toString().padStart(2, "0");