diff --git a/core/modules/menu/menu.admin.js b/core/modules/menu/menu.admin.js
index 15bc2e7..4a2c732 100644
--- a/core/modules/menu/menu.admin.js
+++ b/core/modules/menu/menu.admin.js
@@ -10,7 +10,7 @@
         });
       });
     }
-  }
+  };
 
   /**
    * Function to set the options of the menu parent item dropdown.
@@ -42,6 +42,6 @@
         });
       }
     });
-  }
+  };
 
 })(jQuery);
diff --git a/core/modules/shortcut/shortcut.admin.js b/core/modules/shortcut/shortcut.admin.js
index 9a730fa..ee5ff04 100644
--- a/core/modules/shortcut/shortcut.admin.js
+++ b/core/modules/shortcut/shortcut.admin.js
@@ -79,7 +79,7 @@ Drupal.behaviors.shortcutDrag = {
         var statusName = statusRow.className.replace(/([^ ]+[ ]+)*shortcut-status-([^ ]+)([ ]+[^ ]+)*/, '$2');
         var statusField = $('select.shortcut-status-select', rowObject.element);
         statusField.val(statusName);
-      };
+      }
 
       tableDrag.restripeTable = function () {
         // :even and :odd are reversed because jQuery counts from 0 and
diff --git a/core/modules/user/user.js b/core/modules/user/user.js
index 44c00f3..73af27e 100644
--- a/core/modules/user/user.js
+++ b/core/modules/user/user.js
@@ -168,7 +168,7 @@ Drupal.evaluatePasswordStrength = function (password, translate) {
 
   // Assemble the final message.
   msg = translate.hasWeaknesses + '<ul><li>' + msg.join('</li><li>') + '</li></ul>';
-  return { strength: strength, message: msg, indicatorText: indicatorText }
+  return { strength: strength, message: msg, indicatorText: indicatorText };
 
 };
 
