about summary refs log tree commit diff
path: root/compose/nginx/darling/word-of-the-day
blob: ab12cb210f33374cdf2a97bde433fec3913d8ddf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
<!DOCTYPE html>
<!--[if lt IE 8]><html lang="en"><![endif]--><!--[if IE 8]> <html class="lt-ie10 lt-ie9 ie8"> <![endif]--><!--[if IE 9]> <html class="lt-ie10 ie9"> <![endif]--><!--[if (gt IE 9)|!(IE)]> <!--> <html lang="en"> <!--<![endif]-->
  <head>
  <meta charset="utf-8">
              <meta http-equiv="x-ua-compatible" content="ie=edge">
      <meta name="referrer" content="unsafe-url">
      <meta property="fb:app_id" content="178450008855735">
      <meta name="viewport" content="width=device-width, initial-scale=1.0">
  
      <!-- Check to see if it's a noindex page -->
                            
      <!--Basic meta-->
              <title>Word of the Day: Darling | Merriam-Webster</title>
                    <meta name="description" content="Build your vocabulary: get a new word every day from Merriam-Webster dictionary. Learn the meaning, history, and fun facts about Darling. Also available as podcast, newsletter, and on the finest social networks.">
                                <link rel="canonical" href="word-of-the-day" />
                          
      <!--Static meta -->
      
      <!--Add opensearch link-->
              <link rel="search" type="application/opensearchdescription+xml" href="https://www.merriam-webster.com/opensearch/dictionary.xml" title="Merriam-Webster Dictionary" />
      
      <!-- Google Optimize -->
      
      <!--Dynamic meta-->
                                  <meta property="og:title" content="Word of the Day: Darling" />
                                        <meta property="og:image" content="https://www.merriam-webster.com/assets/mw/word-of-the-day/social/ea71a08caf07be38c76d13348bed40b4.jpg" />
                                          <meta property="og:url" content="https://www.merriam-webster.com/word-of-the-day/darling-2019-05-12" />
                                        <meta property="og:description" content="The origins of darling can be found in the very heart of the English language, and examples of its use are found in Old English writings from the 9th century. The Old English dēorling was formed by" />
                                        <meta property="og:type" content="article" />
                            
                                                <meta name="twitter:title" content="Word of the Day: Darling" />
                                                                <meta name="twitter:image" content="https://www.merriam-webster.com/assets/mw/word-of-the-day/social/ea71a08caf07be38c76d13348bed40b4.jpg" />
                                                                <meta name="twitter:url" content="https://www.merriam-webster.com/word-of-the-day/darling-2019-05-12" />
                                                                <meta name="twitter:description" content="The origins of darling can be found in the very heart of the English language, and examples of its use are found in Old English writings from the 9th century. The Old English dēorling was formed by" />
                                                                                  <meta name="twitter:card" content="summary_large_image" />
                                                                <meta name="twitter:site" content="@MerriamWebster" />
                                            
        <link rel="shortcut icon" href="favicon.png" type="image/x-icon">
    <link rel="icon" href="favicon.png" type="image/x-icon">
    
                    <script type="text/javascript">
        var googletag = googletag || {};
        googletag.cmd = googletag.cmd || [];
    
        window.Adomik = window.Adomik || {};
        Adomik.randomAdGroup = function() {
          var rand = Math.random();
          switch (false) {
          case !(rand < 0.09): return "ad_ex" + (Math.floor(100 * rand));
          case !(rand < 0.10): return "ad_bc";
          default: return "ad_opt";
          }
        };
      </script>
      <script async src="https://js-sec.indexww.com/ht/htw-merriam-webster.js" type="text/javascript"></script>
    
                <link rel="stylesheet" href="assets/mw/app-bundles/mw-2019-05-09.13-43-27.000000-app-bundle/css/style.min.css" media="screen">
    

     
    <script type="text/javascript">
      googletag.cmd.push(function() {
        if  (typeof window.headertag === 'undefined' || window.headertag.apiReady !== true) {
          window.headertag = googletag;
            }
      });
    </script>

    <script async="async" src="https://www.googletagservices.com/tag/js/gpt.js"></script>
    <script>
    /* ----- Begin Step 1 ----- */
    //Load the APS JavaScript Library
    !function(a9,a,p,s,t,A,g){if(a[a9])return;function q(c,r){a[a9]._Q.push([c,r])}a[a9]={init:function(){q("i",arguments)},fetchBids:function(){q("f",arguments)},setDisplayBids:function(){},targetingKeys:function(){return[]},_Q:[]};A=p.createElement(s);A.async=!0;A.src=t;g=p.getElementsByTagName(s)[0];g.parentNode.insertBefore(A,g)}("apstag",window,document,"script","//c.amazon-adsystem.com/aax2/apstag.js");
    //Initialize the Library
      apstag.init( {
        pubID: '3022',
        adServer: 'googletag',
        bidTimeout: 2e3
      });
    /* ----- End Step 1 ----- */
    </script>
        
        <script type="text/javascript">
      window.mwdata = {};
      window.mwdata.assetsDomain1 = '//www.merriam-webster.com/assets';
      window.mwdata.assetsDomain2 = '//www.merriam-webster.com/assets';
      window.mwdata.assetsDomain3 = '//media2.merriam-webster.com';
      window.mwdata.pronsDomain   = '//media.merriam-webster.com';
      window.mwdata.env           = 'production';
      window.mwdata.jwkey        = 'zw1JPzyqv2DcY1xJTZncAt9HKaUKLEztLQFMqw==';
      window.mwdata.isHome        = false;
          
      window.mwdata.ads           = {"slot-top":{"type":"google_dfp","data":{"slot":"\/15510053\/MW\/WOD","id":"div-gpt-ad-200209901586206343-1","defSizes":[[728,90]],"targeting":[["POS",["TOP"]],["PAGE"],["requestSource","GPT"]],"sizeMappings":[{"screen":[0,0],"ads":[[320,50]]},{"screen":[768,100],"ads":[[728,90]]}]}},"slot-right1":{"type":"google_dfp","data":{"slot":"\/15510053\/MW\/WOD","id":"div-gpt-ad-200209901586206343-2","defSizes":[[300,250]],"targeting":[["POS",["TOP"]],["PAGE"],["requestSource","GPT"]],"sizeMappings":[{"screen":[0,0],"ads":[]},{"screen":[768,260],"ads":[[300,250]]}]}},"slot-right2":{"type":"google_dfp","data":{"slot":"\/15510053\/MW\/WOD","id":"div-gpt-ad-200209901586206343-3","defSizes":[[300,250]],"targeting":[["POS",["BOT2"]],["PAGE"],["requestSource","GPT"]],"sizeMappings":[{"screen":[0,0],"ads":[]},{"screen":[768,260],"ads":[[300,250]]}]}},"slot-central1":{"type":"google_dfp","data":{"slot":"\/15510053\/MW\/WOD","id":"div-gpt-ad-200209901586206343-4","defSizes":[[300,250]],"targeting":[["POS",["BOT3"]],["PAGE"],["requestSource","GPT"]],"sizeMappings":[{"screen":[310,260],"ads":[[300,250]]},{"screen":[768,0],"ads":[]}]}},"slot-mobile-fixed-ad":{"type":"google_dfp","data":{"slot":"\/15510053\/MW\/WOD","id":"div-gpt-ad-6298827-1","defSizes":[[320,50]],"targeting":[["POS",["BOT1"]],["PAGE"],["SEARCH"],["CAT"],["requestSource","GPT"]],"sizeMappings":[{"screen":[0,0],"ads":[[320,50]]},{"screen":[768,0],"ads":[]}]}}};
      window.mwdata.ads2          = {"slot-top":{"type":"google_dfp","data":{"slot":"\/15510053\/MW_DICT\/WOD","id":"div-gpt-ad-200209901586206343-1","defSizes":[[728,90]],"targeting":[["POS",["TOP"]],["index_pos",["TOP_REFRESH"]],["PAGE"],["requestSource","GPT"]],"sizeMappings":[{"screen":[0,0],"ads":[[320,50]]},{"screen":[768,100],"ads":[[728,90]]}]}},"slot-right1":{"type":"google_dfp","data":{"slot":"\/15510053\/MW_DICT\/WOD","id":"div-gpt-ad-200209901586206343-2","defSizes":[[300,250]],"targeting":[["POS",["TOP"]],["index_pos",["TOP_REFRESH"]],["PAGE"],["requestSource","GPT"]],"sizeMappings":[{"screen":[0,0],"ads":[]},{"screen":[768,260],"ads":[[300,250]]}]}},"slot-right2":{"type":"google_dfp","data":{"slot":"\/15510053\/MW_DICT\/WOD","id":"div-gpt-ad-200209901586206343-3","defSizes":[[300,250]],"targeting":[["POS",["BOT2"]],["index_pos",["BOT2_REFRESH"]],["PAGE"],["requestSource","GPT"]],"sizeMappings":[{"screen":[0,0],"ads":[]},{"screen":[768,260],"ads":[[300,250]]}]}},"slot-central1":{"type":"google_dfp","data":{"slot":"\/15510053\/MW_DICT\/WOD","id":"div-gpt-ad-200209901586206343-4","defSizes":[[300,250]],"targeting":[["POS",["BOT3"]],["index_pos",["BOT3_REFRESH"]],["PAGE"],["requestSource","GPT"]],"sizeMappings":[{"screen":[310,260],"ads":[[300,250]]},{"screen":[768,0],"ads":[]}]}},"slot-mobile-fixed-ad":{"type":"google_dfp","data":{"slot":"\/15510053\/MW_DICT\/WOD","id":"div-gpt-ad-6298827-1","defSizes":[[320,50]],"targeting":[["POS",["BOT1"]],["index_pos",["BOT1_REFRESH"]],["PAGE"],["SEARCH"],["CAT"],["requestSource","GPT"]],"sizeMappings":[{"screen":[0,0],"ads":[[320,50]]},{"screen":[768,0],"ads":[]}]}}};
      window.mwdata.ads2Mobile    = {"slot-mobile-fixed-ad":{"type":"google_dfp","data":{"slot":"\/15510053\/MW_DICT\/WOD","id":"div-gpt-ad-6298827-1","defSizes":[[320,50]],"targeting":[["POS",["BOT1"]],["index_pos",["BOT1_REFRESH"]],["PAGE"],["SEARCH"],["CAT"],["requestSource","GPT"]],"sizeMappings":[{"screen":[0,0],"ads":[[320,50]]},{"screen":[768,0],"ads":[]}]}}};
      window.mwdata.adtestSupport  = false;
      window.mwdata.disableBidders = false;
      window.mwdata.adsBlacklist   = [];
      window.mwdata.adsWhitelist   = null;
      window.mwdata.adsCarCount    = 0;
      window.mwdata.adsQuizCount   = 0;
          
      window.mwdata.fbAppId       = '178450008855735';
      window.mwdata.fbSdkReady    = false;
      window.mwdata.fbSdkQueue    = [];
      window.mwdata.gaSiteId              = 'UA-296234-25';
      window.mwdata.gaNoTrackOnLoad       = false;
      window.mwdata.gaSpecialTracking     = null;
      window.mwdata.gaSpecialTrackingWord = null;
      window.mwdata.gatReady        = false;
      window.mwdata.gatQueue        = [];
      window.mwdata.tagsPrepped     = [];
      window.mwdata.dfpSvcUp        = false;
      window.mwdata.search         = "";
      window.mwdata.cat            = "";
      window.mwdata.contentType1   = null;
      window.mwdata.contentType2   = null;
      window.mwdata.contentType3   = null;
      window.mwdata.taxon         = null;
      window.mwdata.userSearch     = "";
      window.mwdata.partialMatch   = false;
      window.mwdata.partialURL     = location.pathname;
      window.mwdata.jwPlayerPath    = window.mwdata.assetsDomain2 + '/mw/jwplayer-8.2.0/';
      window.mwHeapEvents = {};
                    window.mwdata.canonicalURL = 'https://www.merriam-webster.com/word-of-the-day';
            
    </script>
    
        <script>
      if (window.mwdata.isHome === false) {
          window.fbAsyncInit = function() {
              //initializing FB
              FB.init({
                appId:   window.mwdata.fbAppId,
                cookie:  true,    // enable cookies to allow the server to access the session
                xfbml:   true,    // parse social plugins on this page
                status:  true,    // get the login status.
                version: 'v2.5'
              });

              //ok - now we can mark FB sdk as being ready for direct usage
              window.mwdata.fbSdkReady = true;

              //JC: at this point we can process any tasks that there
              //were added prior to FB sdk fully loaded
              var qLength = window.mwdata.fbSdkQueue.length;
              for (var i = 0; i < qLength; i++) {
                  var fn  = window.mwdata.fbSdkQueue[i];
                  fn();
              }
              window.mwdata.fbSdkQueue = [];

              //not sure what this is
              FB.getLoginStatus(function(response) {
                  //Update components on the page.
                  $(document).trigger("facebook:loginStatus", [response]);
              });
          };

          (function(d, s, id){
              var js, fjs = d.getElementsByTagName(s)[0];
              if (d.getElementById(id)) {return;}
              js = d.createElement(s); js.id = id;
              js.src = "//connect.facebook.net/en_US/sdk.js";
              fjs.parentNode.insertBefore(js, fjs);
          }(document, 'script', 'facebook-jssdk'));
      }
    </script>
        
    
        <script>
      window.mwRequireCall = [];
      window.require = function(reqName, reqFunc) {
        window.mwRequireCall.push({reqName:reqName, reqFunc:reqFunc});
      };
    </script>

                
        
        
                
              <link rel="alternate" type="application/rss+xml" title="Word of the Day" href="https://www.merriam-webster.com/wotd/feed/rss2">
    
    <script type="text/javascript">
      window.heap=window.heap||[],heap.load=function(e,t){window.heap.appid=e,window.heap.config=t=t||{};var r=t.forceSSL||"https:"===document.location.protocol,a=document.createElement("script");a.type="text/javascript",a.async=!0,a.src=(r?"https:":"http:")+"//cdn.heapanalytics.com/js/heap-"+e+".js";var n=document.getElementsByTagName("script")[0];n.parentNode.insertBefore(a,n);for(var o=function(e){return function(){heap.push([e].concat(Array.prototype.slice.call(arguments,0)))}},p=["addEventProperties","addUserProperties","clearEventProperties","identify","removeEventProperty","setEventProperties","track","unsetEventProperty"],c=0;c<p.length;c++)heap[p[c]]=o(p[c])};
      if ((window.mwdata.env === 'production') || (window.mwdata.env === 'staging')) {
        heap.load("537798487");
      } else {
        heap.load("1079576041");
      }
      heap.clearEventProperties();
    </script>

            <!-- block video ads on all pages that aren't /dictionary, /thesaurus, /medical, and /legal -->
        <script async id="ns_script_dc" data-key="12ca4747-8e80-4a36-b550-dc239c18b954" data-e="5" src="https://cdn.includemodal.com/sp.js" type="text/javascript"></script>
      </head>

  <body class='no-touch wod-article-page'>

    <div class="outer-container">
      <div class="main-container">
      
                <div class="menu-filler"></div>
<header class="shrinkheader">
  <div class="navbar">
    <a href="https://www.merriam-webster.com/" class="logo-cnt" ><img src="assets/mw/static/app-standalone-images/MW_logo.png" alt="Merriam-Webster Logo" /></a>
    <div class="since1828-cnt">
      <span class="since1828-text">SINCE</span> <span class="since1828-num">1828</span>
    </div>
    <div class="nav-btn-cnt menu-toggle">
      <span class="menu-txt">Menu</span>
      <ul class="menu-lines"><li></li><li></li><li></li></ul>
    </div>
    <div class="nav-search-btn mob-search-btn">
      <span class="search-icon">
        <?xml version="1.0" encoding="UTF-8"?>
        <svg width="26px" height="29px" viewBox="0 0 26 29" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
            <g id="Search" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
                <g class="g-search-icon" transform="translate(1.000000, 1.000000)" fill="#ffffff" fill-rule="nonzero">
                    <path d="M17.5185815,17.4073633 L24.5896493,24.4784311 C24.9801736,24.8689554 24.9801736,25.5021204 24.5896493,25.8926447 L23.1754357,27.3068582 C22.7849114,27.6973825 22.1517464,27.6973825 21.7612221,27.3068582 L14.6901543,20.2357904 C14.29963,19.8452661 14.29963,19.2121011 14.6901543,18.8215769 L16.1043679,17.4073633 C16.4948922,17.016839 17.1280572,17.016839 17.5185815,17.4073633 Z M10.5,21 C4.70101013,21 0,16.2989899 0,10.5 C0,4.70101013 4.70101013,0 10.5,0 C16.2989899,0 21,4.70101013 21,10.5 C21,16.2989899 16.2989899,21 10.5,21 Z M10.5,18 C14.6421356,18 18,14.6421356 18,10.5 C18,6.35786438 14.6421356,3 10.5,3 C6.35786438,3 3,6.35786438 3,10.5 C3,14.6421356 6.35786438,18 10.5,18 Z" id="Oval"></path>
                </g>
            </g>
        </svg>
      </span>
    </div>  

    <div class="search-cnt">
      <nav class="link-bar">
        <ul class="link-bar-l" role="navigation">
          <li>
            <a class="mw-tooltip-arrowbox" id="join-mwu" rel="noopener" target="_blank" href="https://unabridged.merriam-webster.com/subscriber/register/p1?refc=HDR_GLOBAL_JOINMWU">JOIN MWU
              <p class="arrowbox">Gain access to thousands of additional definitions and advanced search features&mdash;ad free! <span class="arrow-link" >JOIN NOW</span></p>
            </a>              
          </li>          
          <li>
            <a href="https://www.merriam-webster.com/word-games">GAMES</a>
          </li>
          <li>
            <a href="https://www.merriam-webster.com/thesaurus">BROWSE THESAURUS</a>
          </li>
          <li class="medium880-hide">
            <a href="word-of-the-day">WORD OF THE DAY</a>
          </li>
          <li class="medium940-hide">
            <a href="https://www.merriam-webster.com/words-at-play">WORDS AT PLAY</a>
          </li>
          <li class="medium1060-show-inline">
            <span id="more-menu" class="mw-tooltip-arrowbox nav-link animated fadeIn" href="#">MORE<i class="fa fa-angle-down" aria-hidden="true"></i>
              <div class="arrowbox">
                  <a class="menu-link medium880-show" href="word-of-the-day">WORD OF THE DAY</a>
                  <a class="menu-link medium940-show" href="https://www.merriam-webster.com/words-at-play">WORDS AT PLAY</a>
                  <a class="menu-link" href="https://www.merriam-webster.com/time-traveler">TIME TRAVELER</a>
              </div>
            </span>
          </li>
          <li class="medium1060-hide">
            <a href="https://www.merriam-webster.com/time-traveler">TIME TRAVELER</a>
          </li>
        </ul>  
        <div class="link-bar-r">
          <a href="https://www.facebook.com/merriamwebster" rel="noopener" target="_blank" class="social-icon fb">Facebook</a>
          <a href="https://twitter.com/merriamwebster" rel="noopener" target="_blank" class="social-icon twitter">Twitter</a>
          <a href="https://www.youtube.com/user/MerriamWebsterOnline" rel="noopener" target="_blank" class="social-icon gplay">YouTube</a>
          <a href="https://www.instagram.com/merriamwebster/" rel="noopener" target="_blank" class="social-icon instagram">Instagram</a>
        </div>
      </nav>

      <form class="s-frm clearfix" id="mw-search-frm" action="https://www.merriam-webster.com/dictionary">
        <div class="s-term-cnt border-box">
          <span class="search-bar-submit"></span>
          <input aria-label="Search" name="s" id="s-term" class="s-term" type="text" value="" autocapitalize="off" spellcheck="false" autocorrect="off" autocomplete="off" />
          <div class="clear-term-cnt" id="clear-term-cnt">
              <svg class="clear-search" id="clear-search" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 18 18">
                  <g fill="none" fill-rule="evenodd" stroke="#265667" stroke-linecap="round" stroke-width="3">
                      <path d="M1.5 1.5l15 15M16.5 1.5l-15 15"/>
                  </g>
              </svg>
            </div>
          <div class="nav-search-btn desk-search-btn">
            <span class="search-icon">
              <svg width="26px" height="29px" viewBox="0 0 26 29" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
                  <g id="Search" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
                      <g class="g-search-icon" transform="translate(1.000000, 1.000000)" fill="#ae0015" fill-rule="nonzero">
                          <path d="M17.5185815,17.4073633 L24.5896493,24.4784311 C24.9801736,24.8689554 24.9801736,25.5021204 24.5896493,25.8926447 L23.1754357,27.3068582 C22.7849114,27.6973825 22.1517464,27.6973825 21.7612221,27.3068582 L14.6901543,20.2357904 C14.29963,19.8452661 14.29963,19.2121011 14.6901543,18.8215769 L16.1043679,17.4073633 C16.4948922,17.016839 17.1280572,17.016839 17.5185815,17.4073633 Z M10.5,21 C4.70101013,21 0,16.2989899 0,10.5 C0,4.70101013 4.70101013,0 10.5,0 C16.2989899,0 21,4.70101013 21,10.5 C21,16.2989899 16.2989899,21 10.5,21 Z M10.5,18 C14.6421356,18 18,14.6421356 18,10.5 C18,6.35786438 14.6421356,3 10.5,3 C6.35786438,3 3,6.35786438 3,10.5 C3,14.6421356 6.35786438,18 10.5,18 Z" id="Oval"></path>
                      </g>
                  </g>
              </svg>
            </span>
          </div>                
        </div>
        <!-- search-dictionary or search-thesaurus -->
        <div id="mw-search-tabs" class="header-search-tabs  search-dictionary">
          <span class="button dictionary-tab  active" data-search-url="/dictionary" data-ref="dictionary">dictionary</span>
          <span class="button thesaurus-tab " data-search-url="/thesaurus" data-ref="thesaurus">thesaurus</span>
        </div>
        <div id="mw-autocomplete" class="s-autocomplete border-box"></div>
      </form>
    </div>
  </div>
</header>

<!--JC: actual mobile menu-->
<div class="menu-mob-cnt">
  <a href="javascript:void(0)" aria-label="close trigger" class="close-trigger"></a>
  
  <div class="menu-mob-cnt-inner">
    <div class="menu-mob-cnt-cut">
      <ul class="border-box">
        <li>
          <a href="https://unabridged.merriam-webster.com/subscriber/register/p1?HDR_GLOBAL_JOINMWU" rel="noopener" target="_blank">JOIN MWU</a>
        </li>      
        <li>
          <a href="https://www.merriam-webster.com/word-games">GAMES</a>
        </li>
        <li>
          <a href="https://www.merriam-webster.com/thesaurus">THESAURUS</a>
        </li>
        <li>
          <a href="word-of-the-day">WORD OF THE DAY</a>
        </li>
        <li>
          <a href="https://www.merriam-webster.com/words-at-play">WORDS AT PLAY</a>
        </li>
        <li>
          <a href="https://www.merriam-webster.com/time-traveler">TIME TRAVELER</a>
        </li>
      </ul>
      
      <div class="social-btns">
        <span>Follow: </span>
        <a href="https://www.facebook.com/merriamwebster" rel="noopener" target="_blank" class="social-icon fb">Facebook</a>
        <a href="https://twitter.com/merriamwebster" rel="noopener" target="_blank" class="social-icon twitter">Twitter</a>
        <a href="https://www.youtube.com/user/MerriamWebsterOnline" rel="noopener" target="_blank" class="social-icon gplay">YouTube</a>
        <a href="https://www.instagram.com/merriamwebster/" rel="noopener" target="_blank" class="social-icon ig">Instagram</a>
      </div>
    </div>      
  </div>
</div>


                                  
                          <div class="home-top-creative-cont border-box">
            <div class="home-top-creative-cont-shadow border-box""></div>
              <div class="abl abl-m320-t728-d728">
                <div class="ad-liner slot-top">
                <script>require(['adProcessor'], function(ap) { ap.renderDfp('slot-top');});</script>
              </div>
            </div>
          </div>
        
                                  
                <div class="main-wrapper clearfix">
  <main>
    <article>
  
      <div class="article-header-container wod-article-header">
        
        <span class="w-a-title margin-lr-0 margin-tb-1875em">
          Word of the Day : May 12, 2019        </span>
        
        <div class="under-widget-title-line"></div>
    
        <div class="quick-def-box">
          <div class="word-header">
            <div class="word-and-pronunciation">
              <h1>darling</h1>
               <a class="play-pron wod-autoplay" onclick="document.getElementById('sound1').play();" href="javascript:void(0)" title="Listen to the pronounciation of darling">play <span class="play-box"></span></a>
               
               <audio  id="sound1" src="darling.mp3" preload="auto"></audio>
            </div>
          </div>
          <span class="scrollDepth" data-eventName="wotd-headword"></span>
          <!-- end simple definition header -->
    
          <div class="word-attributes">
            <span class="main-attr">noun</span>
            <!--<span class="word-syllables">fru <span class="dot"></span> gal</span>-->
            <span class="word-syllables">DAHR-ling</span>
            <!--<span class="pr">\DAHR-ling\</span>-->
          </div>
          <!-- end word attributes -->
    
    
    
          <!--Next and previous buttons rendered depending on if we have content-->
          <div class="nav-arrow-container">
                          <a href="https://www.merriam-webster.com/word-of-the-day/incipient-2019-05-11" class="prev-wod-arrow">Prev</a>
                        
            <a href="word-of-the-day#" class="next-wod-arrow  disabled">Next</a>
          </div>
          
        </div>
      </div>
      
      
      
      
      <div class="article-social-sidebar social-hide-till-load">
        <ul>
          <li>
            <a href="word-of-the-day#" class="sticky-icon fb share-link" data-share-url="https://www.merriam-webster.com/word-of-the-day/darling-2019-05-12" data-share-image="https://www.merriam-webster.com/assets/mw/word-of-the-day/social/ea71a08caf07be38c76d13348bed40b4.jpg" data-share-title="Word of the Day: Darling" data-share-description="The origins of darling can be found in the very heart of the English language, and examples of its use are found in Old English writings from the 9th century. The Old English dēorling was formed by"></a>
          </li>
          <li>
            <a href="word-of-the-day#" class="sticky-icon twitter share-link" data-share-url="https://www.merriam-webster.com/word-of-the-day/darling-2019-05-12" data-share-text="Word of the Day: Darling — See the full definition" data-share-image="https://www.merriam-webster.com/assets/mw/word-of-the-day/social/ea71a08caf07be38c76d13348bed40b4.jpg"></a>
          </li>
        </ul>
      </div>
      
      
      
      
      <hr class="blue-divide thin-divide">
    
    
    
    
      <div class="lr-cols-area clearfix sticky-column">
        <div class="left-content">
    
          <div class="wod-article-container">
    
            <!--JC: 1-st part of word-->
            <div class="wod-definition-container">
              <h2>Definition</h2>
              <p><strong>1 :</strong> a dearly loved person</p>

<p><strong>2 :</strong> <a href="https://www.merriam-webster.com/dictionary/favorite">favorite</a></p>
              <span class="scrollDepth" data-eventName="wotd-definition"></span>              
                <h2>Did You Know?</h2>
                <div class="did-you-know-wrapper">
                  <div class="left-content-box">
                    <p>The origins of <em>darling</em> can be found in the very heart of the English language, and examples of its use are found in Old English writings from the 9th century. The Old English <em>dēorling</em> was formed by attaching the Old English suffix <em><a href="https://www.merriam-webster.com/dictionary/-ling#h3">-ling</a></em> ("one associated with or marked by a specified quality") with the adjective <em>dēore</em>, the ancestor of our adjective <em><a href="https://www.merriam-webster.com/dictionary/dear">dear</a></em> ("regarded very affectionately or fondly," "highly valued or esteemed," "beloved"). English speakers appear to have developed a fondness for <em>darling</em> and have held on to it for well over a thousand years now. And though its spelling has changed over time—including variations such as <em>dyrling</em>, <em>derlinge</em>, and <em>dearling</em>—<em>darling</em> has maintained its original sense of "one dearly loved."</p>
                    <span class="scrollDepth" data-eventName="wotd-did-you-know"></span>                  
                  </div>
                  <div id="wotd-right-content-box" class="right-content-box hidden">
                    <div id="wotd-subscribe-box"><!--Subscribe WOD Box-->
<div id="subscribe-wod-box" class="clearfix">
  <h3 class="header">Build your vocabulary! Get Word of the Day in your inbox every day.</h3>
  <form class="js-wod-subscribe-frm" action="https://www.merriam-webster.com/" data-source="mwsite" data-campaign="wotd" data-medium="wotd-side-box">
    <input type="text" class="wod-subscribe-input" name="email" placeholder="Your email address">
    <input type="submit" name="submit" class="subscribe-btn" value="Subscribe" />
  </form>    
</div>
<!--Subscribe WOD Box end-->
</div>
                    <span class="scrollDepth" data-eventName="wotd-subscribe-box"></span>
                    <div id="wotd-games-box"><div class="wgt-side wgt-games-side">
  
  <h4 class="jc-wgt-title-type1">
    <a href="https://www.merriam-webster.com/word-games">Test Your Vocabulary</a>
  </h4>
  
  <div class="jc-under-tline-type2 margin-t-0p625em margin-b-1p375em"></div>
      <p class="lead">Slippery Words Quiz—Changing with the Times</p>
    <div class="wgt-games-side-items">
    
    <div class="wgts-quiz-with-answers">
      <ul class="wgts-quiz-question">
        <li class="wgts-quiz-image">
          <div class="thumbnail">
          <span class="lazyload-container ratio-4-3"><img data-sizes="auto" alt="ducreux self portrait yawning" is_retina="true" data-src="//www.merriam-webster.com/assets/mw/images/quiz/quiz-global-side-widget/ducreux-self-portrait-yawning-3447-cef4bad41bf6fa2bcbc4c7f3b6506773@1x.jpg" data-caption="" data-credit="" data-type="quiz" data-dim="quiz-global-side-widget" data-ret-pref="ducreux-self-portrait-yawning-3447-cef4bad41bf6fa2bcbc4c7f3b6506773" data-ret-x="1" data-srcset="//www.merriam-webster.com/assets/mw/images/quiz/quiz-global-side-widget/ducreux-self-portrait-yawning-3447-cef4bad41bf6fa2bcbc4c7f3b6506773@1x.jpg 1x, //www.merriam-webster.com/assets/mw/images/quiz/quiz-global-side-widget/ducreux-self-portrait-yawning-3447-cef4bad41bf6fa2bcbc4c7f3b6506773@2x.jpg 2x" pair-id="3450" image-id="3447" class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="/></span></div>
        </li>
        <li class="lead">What is an earlier meaning of <strong>nice</strong>?</li>
      </ul>
      <div class="content">
        <ul class="quiz-answer-list">
          <li>
                                      <a class="quiz-answer" href="https://www.merriam-webster.com/word-games/words-that-have-changed-meaning-quiz?q=11&amp;a=43">political</a>
                                      <a class="quiz-answer" href="https://www.merriam-webster.com/word-games/words-that-have-changed-meaning-quiz?q=11&amp;a=42">round</a>
                        </li><li>              <a class="quiz-answer" href="https://www.merriam-webster.com/word-games/words-that-have-changed-meaning-quiz?q=11&amp;a=41">lewd</a>
                                      <a class="quiz-answer" href="https://www.merriam-webster.com/word-games/words-that-have-changed-meaning-quiz?q=11&amp;a=44">fantastical</a>
                    </li>
        </ul>  
      </div>
    </div>
    
    <div class="wgts-quiz">
      <div class="thumbnail"><span class="lazyload-container ratio-4-3"><img data-sizes="auto" alt="True or False" data-src="//www.merriam-webster.com/assets/mw/static/images/old-quizzes/true-or-false/80x60@1x.jpg" data-dim="80x60" data-srcset="//www.merriam-webster.com/assets/mw/static/images/old-quizzes/true-or-false/80x60@1x.jpg 1x, //www.merriam-webster.com/assets/mw/static/images/old-quizzes/true-or-false/80x60@2x.jpg 2x" class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="/></span></div>
      <div class="content">
        <p class="blurb">Test your knowledge - and maybe learn something along the way.</p>
        <a class="to-quiz" href="https://www.merriam-webster.com/word-games/true-or-false">TAKE THE QUIZ</a>
      </div>
    </div>
      
    <div class="wgts-quiz last">
      <div class="thumbnail"><span class="lazyload-container ratio-4-3"><img data-sizes="auto" alt="Syn City" data-src="//www.merriam-webster.com/assets/mw/static/images/games/special5/syn-city/204x153@1x.jpg" data-srcset="//www.merriam-webster.com/assets/mw/static/images/games/special5/syn-city/204x153@1x.jpg 1x, //www.merriam-webster.com/assets/mw/static/images/games/special5/syn-city/204x153@2x.jpg 2x" data-dim="204x153" class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="></span></div>
      <div class="content">
        <p class="blurb"><strong>Test Your Knowledge</strong> - and learn some interesting things along the way.</p>
        <a class="to-quiz" href="https://www.merriam-webster.com/word-games/syn-city">TAKE THE QUIZ</a>
      </div>
    </div>
    
  </div>
</div></div>
                  </div>
                </div>
            </div>
            
            <hr class="blue-divide thin-divide desktop-only">
            
            <!--JC: 2-nd part of word-->
              <div class="wotd-examples">
                <h2>Examples</h2>
                <p>The youngest of three children, he was always his parents' little <em>darling</em>.</p>

<p>"Once reticent to share anything about herself with fans and the media, thinking it was cooler to be mysterious, the critical <em>darling</em> and dance world entrepreneur is now open and forthright…." — Katie Bain, <em>Billboard.com</em>, 28 Mar. 2019</p>
                <span class="scrollDepth" data-eventName="wotd-examples"></span>                
              </div>
              <hr class="blue-divide thin-divide no-float">
              <div class="game-recirc-widget">
  <h2>Test Your Vocabulary with M-W Quizzes</h2>
  <div class="chalenges-bar">
    <div class="challenges-slider bar-items">
        
              <div class="item">
          <a class="img-link" href="https://www.merriam-webster.com/word-games/words-that-have-changed-meaning-quiz?src=wotdl">
            <span class="lazyload-container ratio-4-3"><img data-sizes="auto" alt="ducreux self portrait yawning" is_retina="true" data-src="//www.merriam-webster.com/assets/mw/images/quiz/quiz-games-landing-weekly-sm/ducreux-self-portrait-yawning-3447-cef4bad41bf6fa2bcbc4c7f3b6506773@1x.jpg" data-caption="" data-credit="" data-type="quiz" data-dim="quiz-games-landing-weekly-sm" data-ret-pref="ducreux-self-portrait-yawning-3447-cef4bad41bf6fa2bcbc4c7f3b6506773" data-ret-x="1" data-srcset="//www.merriam-webster.com/assets/mw/images/quiz/quiz-games-landing-weekly-sm/ducreux-self-portrait-yawning-3447-cef4bad41bf6fa2bcbc4c7f3b6506773@1x.jpg 1x, //www.merriam-webster.com/assets/mw/images/quiz/quiz-games-landing-weekly-sm/ducreux-self-portrait-yawning-3447-cef4bad41bf6fa2bcbc4c7f3b6506773@2x.jpg 2x" pair-id="3450" image-id="3447" class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="/></span>          </a>
          <p><a href="https://www.merriam-webster.com/word-games/words-that-have-changed-meaning-quiz?src=wotdl">Slippery Words Quiz—Changing with the Times</a></p>
          <a href="https://www.merriam-webster.com/word-games/words-that-have-changed-meaning-quiz?src=wotdl" class="arrow-link">Play Now</a>
        </div>
              <div class="item">
          <a class="img-link" href="https://www.merriam-webster.com/word-games/ntt-flowers-quiz?src=wotdl">
            <span class="lazyload-container ratio-4-3"><img data-sizes="auto" alt="name that thing flower edition" is_retina="true" data-src="//www.merriam-webster.com/assets/mw/images/quiz/quiz-games-landing-weekly-sm/name-that-thing-flower-edition-3542-d5fc87d9556ed99dc2774375dedfebaa@1x.jpg" data-caption="" data-credit="" data-type="quiz" data-dim="quiz-games-landing-weekly-sm" data-ret-pref="name-that-thing-flower-edition-3542-d5fc87d9556ed99dc2774375dedfebaa" data-ret-x="1" data-srcset="//www.merriam-webster.com/assets/mw/images/quiz/quiz-games-landing-weekly-sm/name-that-thing-flower-edition-3542-d5fc87d9556ed99dc2774375dedfebaa@1x.jpg 1x, //www.merriam-webster.com/assets/mw/images/quiz/quiz-games-landing-weekly-sm/name-that-thing-flower-edition-3542-d5fc87d9556ed99dc2774375dedfebaa@2x.jpg 2x" pair-id="3545" image-id="3542" class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="/></span>          </a>
          <p><a href="https://www.merriam-webster.com/word-games/ntt-flowers-quiz?src=wotdl">Name that Thing: Flower Edition</a></p>
          <a href="https://www.merriam-webster.com/word-games/ntt-flowers-quiz?src=wotdl" class="arrow-link">Play Now</a>
        </div>
              <div class="item">
          <a class="img-link" href="https://www.merriam-webster.com/word-games/april-2019-wotd-quiz?src=wotdl">
            <span class="lazyload-container ratio-4-3"><img data-sizes="auto" alt="a bird amidst buds" is_retina="true" data-src="//www.merriam-webster.com/assets/mw/images/quiz/quiz-games-landing-weekly-sm/a-bird-amidst-buds-6422-7d9f55fe8086fd63187fc179a014652d@1x.jpg" data-caption="" data-credit="" data-type="quiz" data-dim="quiz-games-landing-weekly-sm" data-ret-pref="a-bird-amidst-buds-6422-7d9f55fe8086fd63187fc179a014652d" data-ret-x="1" data-srcset="//www.merriam-webster.com/assets/mw/images/quiz/quiz-games-landing-weekly-sm/a-bird-amidst-buds-6422-7d9f55fe8086fd63187fc179a014652d@1x.jpg 1x, //www.merriam-webster.com/assets/mw/images/quiz/quiz-games-landing-weekly-sm/a-bird-amidst-buds-6422-7d9f55fe8086fd63187fc179a014652d@2x.jpg 2x" pair-id="6424" image-id="6422" class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="/></span>          </a>
          <p><a href="https://www.merriam-webster.com/word-games/april-2019-wotd-quiz?src=wotdl">April 2019 Words of the Day Quiz</a></p>
          <a href="https://www.merriam-webster.com/word-games/april-2019-wotd-quiz?src=wotdl" class="arrow-link">Play Now</a>
        </div>
              <div class="item">
          <a class="img-link" href="https://www.merriam-webster.com/word-games/greek-latin-roots?src=wotdl">
            <span class="lazyload-container ratio-4-3"><img data-sizes="auto" alt="roman forum" is_retina="true" data-src="//www.merriam-webster.com/assets/mw/images/quiz/quiz-games-landing-weekly-sm/roman-forum-2896-d2f464ea34e471b777fe441f8d4705e8@1x.jpg" data-caption="" data-credit="" data-type="quiz" data-dim="quiz-games-landing-weekly-sm" data-ret-pref="roman-forum-2896-d2f464ea34e471b777fe441f8d4705e8" data-ret-x="1" data-srcset="//www.merriam-webster.com/assets/mw/images/quiz/quiz-games-landing-weekly-sm/roman-forum-2896-d2f464ea34e471b777fe441f8d4705e8@1x.jpg 1x, //www.merriam-webster.com/assets/mw/images/quiz/quiz-games-landing-weekly-sm/roman-forum-2896-d2f464ea34e471b777fe441f8d4705e8@2x.jpg 2x" pair-id="2899" image-id="2896" class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="/></span>          </a>
          <p><a href="https://www.merriam-webster.com/word-games/greek-latin-roots?src=wotdl">Words from Greek and Latin Quiz</a></p>
          <a href="https://www.merriam-webster.com/word-games/greek-latin-roots?src=wotdl" class="arrow-link">Play Now</a>
        </div>
              <div class="item">
          <a class="img-link" href="https://www.merriam-webster.com/word-games/name-that-thing-animal-edition?src=wotdl">
            <span class="lazyload-container ratio-4-3"><img data-sizes="auto" alt="name that thing animal edition" is_retina="true" data-src="//www.merriam-webster.com/assets/mw/images/quiz/quiz-games-landing-weekly-sm/name-that-thing-animal-edition-4474-ae5d3ea2634b92d762af6ad133ab069d@1x.jpg" data-caption="" data-credit="" data-type="quiz" data-dim="quiz-games-landing-weekly-sm" data-ret-pref="name-that-thing-animal-edition-4474-ae5d3ea2634b92d762af6ad133ab069d" data-ret-x="1" data-srcset="//www.merriam-webster.com/assets/mw/images/quiz/quiz-games-landing-weekly-sm/name-that-thing-animal-edition-4474-ae5d3ea2634b92d762af6ad133ab069d@1x.jpg 1x, //www.merriam-webster.com/assets/mw/images/quiz/quiz-games-landing-weekly-sm/name-that-thing-animal-edition-4474-ae5d3ea2634b92d762af6ad133ab069d@2x.jpg 2x" pair-id="4476" image-id="4474" class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="/></span>          </a>
          <p><a href="https://www.merriam-webster.com/word-games/name-that-thing-animal-edition?src=wotdl">Name That Thing: Animal Edition</a></p>
          <a href="https://www.merriam-webster.com/word-games/name-that-thing-animal-edition?src=wotdl" class="arrow-link">Play Now</a>
        </div>
              <div class="item">
          <a class="img-link" href="https://www.merriam-webster.com/word-games/the-exceptions-quiz?src=wotdl">
            <span class="lazyload-container ratio-4-3"><img data-sizes="auto" alt="one umbrella with a different color" is_retina="true" data-src="//www.merriam-webster.com/assets/mw/images/quiz/quiz-games-landing-weekly-sm/one-umbrella-with-a-different-color-1842-f9d261cb893f640dae74d58628c9f311@1x.jpg" data-caption="" data-credit="" data-type="quiz" data-dim="quiz-games-landing-weekly-sm" data-ret-pref="one-umbrella-with-a-different-color-1842-f9d261cb893f640dae74d58628c9f311" data-ret-x="1" data-srcset="//www.merriam-webster.com/assets/mw/images/quiz/quiz-games-landing-weekly-sm/one-umbrella-with-a-different-color-1842-f9d261cb893f640dae74d58628c9f311@1x.jpg 1x, //www.merriam-webster.com/assets/mw/images/quiz/quiz-games-landing-weekly-sm/one-umbrella-with-a-different-color-1842-f9d261cb893f640dae74d58628c9f311@2x.jpg 2x" pair-id="1850" image-id="1842" class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="/></span>          </a>
          <p><a href="https://www.merriam-webster.com/word-games/the-exceptions-quiz?src=wotdl">The Exceptions Quiz</a></p>
          <a href="https://www.merriam-webster.com/word-games/the-exceptions-quiz?src=wotdl" class="arrow-link">Play Now</a>
        </div>
          </div>
  </div>
</div>

<script>
  require(["gameRecircWidget"], function(gameRecircWidget) {
    gameRecircWidget.init();
  });
</script>              <span class="scrollDepth" data-eventName="wotd-quiz-recirc"></span>              
              <hr class="blue-divide thin-divide">
    

              <div class="wod-activity-container">
                <h2>Name That Synonym</h2>
                <p>Fill in the blanks to complete an Irish-derived synonym of <em>darling</em>: a _ o _ r _ e _ n.</p>
                                  <a href="http://bit.ly/2VhijlD" class="view-answer-link">VIEW THE ANSWER</a>
                              </div>
            <span class="scrollDepth" data-eventName="wotd-daily-quiz"></span>
            <hr class="blue-divide thin-divide">
            
            
            <!--JC: podcasts widget-->
<div class="podcast-player-block wod-podcast-player-block">
  <div class="title-block">
    <h2>Podcast</h2>
  </div>

<!--   <div class="subscribe-block">
   <h3> <a rel="nofollow" href="https://itunes.apple.com/us/podcast/merriam-websters-word-day/id164829166?mt=2" class="subscribe-link" target="_blank"><span class="rss-podcast-icon"></span>SUBSCRIBE</a></h3>
  </div> -->

  <div class="podcast-container">
    <div id="art19-podcast-player" class="art19-web-player awp-medium awp-theme-light-blue" data-episode-id="3c33fd40-ea2f-4bd8-8a61-8c7f799dfa23"></div>    
  </div>
  
  <div class="podcast-legal">
    <p>Theme music by Joshua Stamper ©2006 <a href="http://www.newjerusalemmusic.com">New Jerusalem Music/ASCAP</a></p>
  </div>
</div>            <span class="scrollDepth" data-eventName="wotd-podcast"></span>
            <hr class="blue-divide">
            
            <!--JC: more wods widget-->
            <div class="more-words-of-day-container">
              <div class="title-container">
                <h2>More Words of the Day</h2>
              </div>
    
              <ul class="more-wod-items">
                                  <li>
                    <h4>May 11</h4>
                    <h2><a href="https://www.merriam-webster.com/word-of-the-day/incipient-2019-05-11">incipient</a></h2>
                  </li>
                  
                  
                                  <li>
                    <h4>May 10</h4>
                    <h2><a href="https://www.merriam-webster.com/word-of-the-day/footle-2019-05-10">footle</a></h2>
                  </li>
                  
                  
                                  <li>
                    <h4>May 09</h4>
                    <h2><a href="https://www.merriam-webster.com/word-of-the-day/stratagem-2019-05-09">stratagem</a></h2>
                  </li>
                  
                  
                                  <li>
                    <h4>May 08</h4>
                    <h2><a href="https://www.merriam-webster.com/word-of-the-day/muse-2019-05-08">muse</a></h2>
                  </li>
                  
                  
                                  <li>
                    <h4>May 07</h4>
                    <h2><a href="https://www.merriam-webster.com/word-of-the-day/links-2019-05-07">links</a></h2>
                  </li>
                  
                  
                                  <li>
                    <h4>May 06</h4>
                    <h2><a href="https://www.merriam-webster.com/word-of-the-day/ephemeral-2019-05-06">ephemeral</a></h2>
                  </li>
                  
                  
                              </ul>
    
              <div class="cta-container">
                <a href="https://www.merriam-webster.com/word-of-the-day/calendar">SEE ALL WORDS OF THE DAY</a>
              </div>
            </div>
            <span class="scrollDepth" data-eventName="wotd-more"></span>
            
            
            
            <!--JC: ad-->
            <div class="central-abl-box show-mobile">
              <div class="abl abl-300-250-nr">
                <div class="ad-liner slot-central1">
                   <script>require(['adProcessor'], function(ap) {ap.renderDfp('slot-central1');});</script>
                </div>
              </div>
            </div>
    
          </div>
        </div>
        <!-- end left side -->
    
    
    
    
    
    
    
    
        <div class="right-rail">
          <div class="fixed-wrapper">
      
            <div class="rail-abl-box hide-mobile">
              <div class="abl abl-300-250-nr">
                <div class="ad-liner slot-right1">
                   <script>require(['adProcessor'], function(ap) {ap.renderDfp('slot-right1');});</script>
                </div>
              </div>
            </div>
      
            <!--JC: Side trending widget start-->
<div class="wgt-side wgt-wap-side-trending">
  
  <div class="jc-wgt-title-type1">
    <a href="https://www.merriam-webster.com/news-trend-watch/see-all">TRENDING NOW</a>
  </div>

  <div class="jc-under-tline-type2 margin-t-0p5em margin-b-0p938em"></div>
  
  <div class="wgt-wap-side-trending-items">
    <ol>
              <li>
          <p class="title">
            <a href="https://www.merriam-webster.com/news-trend-watch/barr-held-in-contempt-of-congress-20190508">
              <span class="tw-module-headword">
                contempt, held in contempt              </span>
              <span class="tw-module-teaser">
                Barr in contempt of Congress              </span>
            </a>
          </p>
        </li>
              <li>
          <p class="title">
            <a href="https://www.merriam-webster.com/news-trend-watch/cnn-trump-congress-confrontation-goes-to-defcon-1-20190508">
              <span class="tw-module-headword">
                DEFCON              </span>
              <span class="tw-module-teaser">
                CNN describes Trump-Congress confrontation              </span>
            </a>
          </p>
        </li>
              <li>
          <p class="title">
            <a href="https://www.merriam-webster.com/news-trend-watch/met-begins-camp-notes-on-fashion-20190506">
              <span class="tw-module-headword">
                camp              </span>
              <span class="tw-module-teaser">
                Celebs arrive at the 2019 Met Gala               </span>
            </a>
          </p>
        </li>
          </ol>
  </div>
  
  <div class="see-all-cnt">
    <a href="https://www.merriam-webster.com/news-trend-watch/see-all">SEE ALL</a>
  </div>
</div>
<!--JC: Side trending widget end-->      
            <div class="rail-abl-box hide-mobile">
              <div class="abl abl-300-250-nr">
                <div class="ad-liner slot-right2">
                   <script>require(['adProcessor'], function(ap) {ap.renderDfp('slot-right2');});</script>
                </div>
              </div>
            </div>
      
          </div>
        </div>
        <!-- End right side -->
      </div>
      <!-- end main content -->
    <!-- WW: Subscribe Unabridged-->
    <!-- WW: Subscribe Unabridged -->
<!-- Disable for now -->

<div id="subscribe-unabridged" class="clearfix">
  <div class="header">Love words? Need even more definitions?</div>
  <p class="teaser">Subscribe to America's largest dictionary and get thousands more definitions and advanced search&mdash;ad free!</p>
  <a class="subscribe-btn" rel="noopener" target="_blank" href="https://unabridged.merriam-webster.com/subscriber/register/p1?refc=FOOTER_WOD_MWU">Merriam-Webster unabridged</a>
</div>
    </article>
  </main>
</div>
<!-- End main wrapper -->

<!-- Mobile sticky banner -->
<div class="border-box mobile-fixed-ad show-mobile">
  <div class="abl abl-m320-t728-d728">
    <div class="ad-liner slot-mobile-fixed-ad">
       <script>require(['adProcessor'], function(ap) {ap.renderDfp('slot-mobile-fixed-ad');});</script>
    </div>
  </div>
</div>


<div class="additional-content-area show-full-list">
<!-- show full list class extends area to show 4 items on mobile instead of 3 -->

  <div class="additional-items">
  <span class="items__header">Words at Play</span>
  <ul>
      <li>
      <a href="https://www.merriam-webster.com/words-at-play/the-words-of-the-week-may-10-2019">
          <span class="lazyload-container ratio-3-2"><img data-sizes="auto" alt="alt-5cd5c26ecd414" is_retina="true" data-src="//www.merriam-webster.com/assets/mw/images/article/art-global-footer-recirc/alt-5cd5c26ecd414-6465-a6b8f3b5e834e448c667eb70bb7a7d2c@1x.jpg" data-caption="" data-credit="" data-type="article" data-dim="art-global-footer-recirc" data-ret-pref="alt-5cd5c26ecd414-6465-a6b8f3b5e834e448c667eb70bb7a7d2c" data-ret-x="1" data-srcset="//www.merriam-webster.com/assets/mw/images/article/art-global-footer-recirc/alt-5cd5c26ecd414-6465-a6b8f3b5e834e448c667eb70bb7a7d2c@1x.jpg 1x, //www.merriam-webster.com/assets/mw/images/article/art-global-footer-recirc/alt-5cd5c26ecd414-6465-a6b8f3b5e834e448c667eb70bb7a7d2c@2x.jpg 2x" pair-id="6467" image-id="6465" class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="/></span>      </a>
      <span class="item__title"><a href="https://www.merriam-webster.com/words-at-play/the-words-of-the-week-may-10-2019">The Good, The Bad, &amp; The Semantically Imprecise - 5/10/19</a></span>
      <p class="mell-gr235"><a href="https://www.merriam-webster.com/words-at-play/the-words-of-the-week-may-10-2019">Words from the week of 5/10/2019</a></p>
    </li>
      <li>
      <a href="https://www.merriam-webster.com/words-at-play/demur-and-demure">
          <span class="lazyload-container ratio-3-2"><img data-sizes="auto" alt="alt-5cd5a25c25af1" is_retina="true" data-src="//www.merriam-webster.com/assets/mw/images/article/art-global-footer-recirc/alt-5cd5a25c25af1-6464-0a2e4dc894b4fdcb30aab0c15faec75c@1x.jpg" data-caption="" data-credit="" data-type="article" data-dim="art-global-footer-recirc" data-ret-pref="alt-5cd5a25c25af1-6464-0a2e4dc894b4fdcb30aab0c15faec75c" data-ret-x="1" data-srcset="//www.merriam-webster.com/assets/mw/images/article/art-global-footer-recirc/alt-5cd5a25c25af1-6464-0a2e4dc894b4fdcb30aab0c15faec75c@1x.jpg 1x, //www.merriam-webster.com/assets/mw/images/article/art-global-footer-recirc/alt-5cd5a25c25af1-6464-0a2e4dc894b4fdcb30aab0c15faec75c@2x.jpg 2x" pair-id="6466" image-id="6464" class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="/></span>      </a>
      <span class="item__title"><a href="https://www.merriam-webster.com/words-at-play/demur-and-demure">'Demur' and 'Demure': Not to be Confused</a></span>
      <p class="mell-gr235"><a href="https://www.merriam-webster.com/words-at-play/demur-and-demure">Don't be demure about using 'demur' and 'demure'</a></p>
    </li>
      <li>
      <a href="https://www.merriam-webster.com/words-at-play/teach-em-or-learn-em">
          <span class="lazyload-container ratio-3-2"><img data-sizes="auto" alt="alt-5cd433048c653" is_retina="true" data-src="//www.merriam-webster.com/assets/mw/images/article/art-global-footer-recirc/alt-5cd433048c653-6462-12dd34b9f1fec2dc6e439c1c788bfdf6@1x.jpg" data-caption="" data-credit="" data-type="article" data-dim="art-global-footer-recirc" data-ret-pref="alt-5cd433048c653-6462-12dd34b9f1fec2dc6e439c1c788bfdf6" data-ret-x="1" data-srcset="//www.merriam-webster.com/assets/mw/images/article/art-global-footer-recirc/alt-5cd433048c653-6462-12dd34b9f1fec2dc6e439c1c788bfdf6@1x.jpg 1x, //www.merriam-webster.com/assets/mw/images/article/art-global-footer-recirc/alt-5cd433048c653-6462-12dd34b9f1fec2dc6e439c1c788bfdf6@2x.jpg 2x" pair-id="6464" image-id="6462" class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="/></span>      </a>
      <span class="item__title"><a href="https://www.merriam-webster.com/words-at-play/teach-em-or-learn-em">'Teach 'em' or 'Learn 'em'?</a></span>
      <p class="mell-gr235"><a href="https://www.merriam-webster.com/words-at-play/teach-em-or-learn-em">When did 'learn' stop meaning "to teach?"</a></p>
    </li>
      <li>
      <a href="https://www.merriam-webster.com/words-at-play/words-were-watching-ambigram">
          <span class="lazyload-container ratio-3-2"><img data-sizes="auto" alt="ambigram of the word yeah" is_retina="true" data-src="//www.merriam-webster.com/assets/mw/images/article/art-global-footer-recirc/ambigram-of-the-word-yeah-6460-bec5f4bd91ea281d7616c70d898fb38e@1x.jpg" data-caption="" data-credit="" data-type="article" data-dim="art-global-footer-recirc" data-ret-pref="ambigram-of-the-word-yeah-6460-bec5f4bd91ea281d7616c70d898fb38e" data-ret-x="1" data-srcset="//www.merriam-webster.com/assets/mw/images/article/art-global-footer-recirc/ambigram-of-the-word-yeah-6460-bec5f4bd91ea281d7616c70d898fb38e@1x.jpg 1x, //www.merriam-webster.com/assets/mw/images/article/art-global-footer-recirc/ambigram-of-the-word-yeah-6460-bec5f4bd91ea281d7616c70d898fb38e@2x.jpg 2x" pair-id="6462" image-id="6460" class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="/></span>      </a>
      <span class="item__title"><a href="https://www.merriam-webster.com/words-at-play/words-were-watching-ambigram">Words We're Watching: 'Ambigram'</a></span>
      <p class="mell-gr235"><a href="https://www.merriam-webster.com/words-at-play/words-were-watching-ambigram">There's more than one way to see it.</a></p>
    </li>
    </ul>
</div>
  <div class="additional-items">
  <span class="items__header">Ask the Editors</span>
  <ul>   
      <li>
      <a href="https://www.merriam-webster.com/video/contractions-with-more-than-two-or-three-words-triple-contractions">
          <span class="lazyload-container ratio-3-2"><img data-sizes="auto" alt="contractions" is_retina="true" data-src="//www.merriam-webster.com/assets/mw/images/video/vid-global-footer-recirc/contractions-6218-27fb55493c33d5668b9647284d70edea@1x.jpg" data-caption="" data-credit="" data-type="video" data-dim="vid-global-footer-recirc" data-ret-pref="contractions-6218-27fb55493c33d5668b9647284d70edea" data-ret-x="1" data-srcset="//www.merriam-webster.com/assets/mw/images/video/vid-global-footer-recirc/contractions-6218-27fb55493c33d5668b9647284d70edea@1x.jpg 1x, //www.merriam-webster.com/assets/mw/images/video/vid-global-footer-recirc/contractions-6218-27fb55493c33d5668b9647284d70edea@2x.jpg 2x" pair-id="6220" image-id="6218" class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="/></span>      </a>
      <span class="item__title"><a href="https://www.merriam-webster.com/video/contractions-with-more-than-two-or-three-words-triple-contractions"">On Contractions of Multiple Words</a></span>
      <p class="mell-gr235"><a href="https://www.merriam-webster.com/video/contractions-with-more-than-two-or-three-words-triple-contractions"">You all would not have guessed some of these</a></p>
    </li>
      <li>
      <a href="https://www.merriam-webster.com/video/uncommon-and-surprising-onomatopoeia-words">
          <span class="lazyload-container ratio-3-2"><img data-sizes="auto" alt="onomatopoeia video" is_retina="true" data-src="//www.merriam-webster.com/assets/mw/images/video/vid-global-footer-recirc/onomatopoeia-video-6226-211e07a136a98272adf11dfbe7177d15@1x.jpg" data-caption="" data-credit="" data-type="video" data-dim="vid-global-footer-recirc" data-ret-pref="onomatopoeia-video-6226-211e07a136a98272adf11dfbe7177d15" data-ret-x="1" data-srcset="//www.merriam-webster.com/assets/mw/images/video/vid-global-footer-recirc/onomatopoeia-video-6226-211e07a136a98272adf11dfbe7177d15@1x.jpg 1x, //www.merriam-webster.com/assets/mw/images/video/vid-global-footer-recirc/onomatopoeia-video-6226-211e07a136a98272adf11dfbe7177d15@2x.jpg 2x" pair-id="6228" image-id="6226" class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="/></span>      </a>
      <span class="item__title"><a href="https://www.merriam-webster.com/video/uncommon-and-surprising-onomatopoeia-words"">A Look at Uncommon Onomatopoeia</a></span>
      <p class="mell-gr235"><a href="https://www.merriam-webster.com/video/uncommon-and-surprising-onomatopoeia-words"">Some imitative words are more surprising than others </a></p>
    </li>
      <li>
      <a href="https://www.merriam-webster.com/video/literally">
          <span class="lazyload-container ratio-3-2"><img data-sizes="auto" alt="video literally" is_retina="true" data-src="//www.merriam-webster.com/assets/mw/images/video/vid-global-footer-recirc/video-literally-1143@1x.jpg" data-caption="" data-credit="" data-type="video" data-dim="vid-global-footer-recirc" data-ret-pref="video-literally-1143" data-ret-x="1" data-srcset="//www.merriam-webster.com/assets/mw/images/video/vid-global-footer-recirc/video-literally-1143@1x.jpg 1x, //www.merriam-webster.com/assets/mw/images/video/vid-global-footer-recirc/video-literally-1143@2x.jpg 2x" pair-id="1145" image-id="1143" class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="/></span>      </a>
      <span class="item__title"><a href="https://www.merriam-webster.com/video/literally"">Literally</a></span>
      <p class="mell-gr235"><a href="https://www.merriam-webster.com/video/literally"">How to use a word that (literally) drives some people nuts.</a></p>
    </li>
      <li>
      <a href="https://www.merriam-webster.com/video/the-awkward-case-of-his-or-her">
          <span class="lazyload-container ratio-3-2"><img data-sizes="auto" alt="video his or her" is_retina="true" data-src="//www.merriam-webster.com/assets/mw/images/video/vid-global-footer-recirc/video-his-or-her-1148@1x.jpg" data-caption="" data-credit="" data-type="video" data-dim="vid-global-footer-recirc" data-ret-pref="video-his-or-her-1148" data-ret-x="1" data-srcset="//www.merriam-webster.com/assets/mw/images/video/vid-global-footer-recirc/video-his-or-her-1148@1x.jpg 1x, //www.merriam-webster.com/assets/mw/images/video/vid-global-footer-recirc/video-his-or-her-1148@2x.jpg 2x" pair-id="1150" image-id="1148" class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="/></span>      </a>
      <span class="item__title"><a href="https://www.merriam-webster.com/video/the-awkward-case-of-his-or-her"">Is Singular 'They' a Better Choice?</a></span>
      <p class="mell-gr235"><a href="https://www.merriam-webster.com/video/the-awkward-case-of-his-or-her"">The awkward case of 'his or her'</a></p>
    </li>
    </ul>
</div>
  <div class="additional-items">
  <span class="items__header">Word Games</span>
   <ul> 
            <li>
        <a href="https://www.merriam-webster.com/word-games/words-that-have-changed-meaning-quiz"><span class="lazyload-container ratio-3-2"><img data-sizes="auto" alt="ducreux self portrait yawning" is_retina="true" data-src="//www.merriam-webster.com/assets/mw/images/quiz/quiz-global-footer-recirc/ducreux-self-portrait-yawning-3447-10ad12af01045a23efdfd3f570858875@1x.jpg" data-caption="" data-credit="" data-type="quiz" data-dim="quiz-global-footer-recirc" data-ret-pref="ducreux-self-portrait-yawning-3447-10ad12af01045a23efdfd3f570858875" data-ret-x="1" data-srcset="//www.merriam-webster.com/assets/mw/images/quiz/quiz-global-footer-recirc/ducreux-self-portrait-yawning-3447-10ad12af01045a23efdfd3f570858875@1x.jpg 1x, //www.merriam-webster.com/assets/mw/images/quiz/quiz-global-footer-recirc/ducreux-self-portrait-yawning-3447-10ad12af01045a23efdfd3f570858875@2x.jpg 2x" pair-id="3450" image-id="3447" class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="/></span></a>
        <span class="item__title"><a href="https://www.merriam-webster.com/word-games/words-that-have-changed-meaning-quiz">Slippery Words Quiz—Changing with the Times</a></span>
        <p class="mell-gr235"><a href="https://www.merriam-webster.com/word-games/words-that-have-changed-meaning-quiz">Do you know these earlier meanings of words?</a></p>
        <a class="quiz-link" href="https://www.merriam-webster.com/word-games/words-that-have-changed-meaning-quiz">Take the quiz</a>
      </li>
                <li>
        <a href="https://www.merriam-webster.com/word-games/ntt-flowers-quiz"><span class="lazyload-container ratio-3-2"><img data-sizes="auto" alt="name that thing flower edition" is_retina="true" data-src="//www.merriam-webster.com/assets/mw/images/quiz/quiz-global-footer-recirc/name-that-thing-flower-edition-3542-b88e6d7ab849c9cb80a115d49a1c7506@1x.jpg" data-caption="" data-credit="" data-type="quiz" data-dim="quiz-global-footer-recirc" data-ret-pref="name-that-thing-flower-edition-3542-b88e6d7ab849c9cb80a115d49a1c7506" data-ret-x="1" data-srcset="//www.merriam-webster.com/assets/mw/images/quiz/quiz-global-footer-recirc/name-that-thing-flower-edition-3542-b88e6d7ab849c9cb80a115d49a1c7506@1x.jpg 1x, //www.merriam-webster.com/assets/mw/images/quiz/quiz-global-footer-recirc/name-that-thing-flower-edition-3542-b88e6d7ab849c9cb80a115d49a1c7506@2x.jpg 2x" pair-id="3545" image-id="3542" class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="/></span></a>
        <span class="item__title"><a href="https://www.merriam-webster.com/word-games/ntt-flowers-quiz">Name that Thing: Flower Edition</a></span>
        <p class="mell-gr235"><a href="https://www.merriam-webster.com/word-games/ntt-flowers-quiz">Can you correctly identify these flowers?</a></p>
        <a class="quiz-link" href="https://www.merriam-webster.com/word-games/ntt-flowers-quiz">Take the quiz</a>
      </li>
                <li>
        <a href="https://www.merriam-webster.com/word-games/true-or-false"><span class="lazyload-container ratio-3-2"><img data-sizes="auto" alt="True or False" data-src="//www.merriam-webster.com/assets/mw/static/images/old-quizzes/true-or-false/261x174@1x.jpg" data-dim="261x174" data-srcset="//www.merriam-webster.com/assets/mw/static/images/old-quizzes/true-or-false/261x174@1x.jpg 1x, //www.merriam-webster.com/assets/mw/static/images/old-quizzes/true-or-false/261x174@2x.jpg 2x" class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="/></span></a>
        <span class="item__title"><a href="https://www.merriam-webster.com/word-games/true-or-false">True or False?</a></span>
        <p class="mell-gr235"><a href="https://www.merriam-webster.com/word-games/true-or-false">Test your knowledge - and maybe learn something along the way.</a></p>
        <a class="quiz-link" href="https://www.merriam-webster.com/word-games/true-or-false">Take the quiz</a>
      </li>
                <li>
        <a href="https://www.merriam-webster.com/word-games/syn-city"><span class="lazyload-container ratio-3-2"><img data-sizes="auto" alt="Syn City" data-src="//www.merriam-webster.com/assets/mw/static/images/games/special5/syn-city/261x174@1x.jpg" data-srcset="//www.merriam-webster.com/assets/mw/static/images/games/special5/syn-city/261x174@1x.jpg 1x, //www.merriam-webster.com/assets/mw/static/images/games/special5/syn-city/261x174@2x.jpg 2x" data-dim="261x174" class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="></span></a>
        <span class="item__title"><a href="https://www.merriam-webster.com/word-games/syn-city">Syn City</a></span>
        <p class="mell-gr235"><a href="https://www.merriam-webster.com/word-games/syn-city">Build a city of skyscrapers—one synonym at a time.</a></p>
        <a class="quiz-link" href="https://www.merriam-webster.com/word-games/syn-city">Play the game</a>
      </li>
        </ul>
</div> 
</div>
<!-- End additional content -->


<script>
  var legacyUbWodSubscribe = false;
  var legacyUbWodEmail     = "";
  require(['wodArticle','trackScrollDepth', 'ads2Refresher'], function(wodArticle,trackScrollDepth, ads2Refresher) {
    wodArticle.init(legacyUbWodSubscribe, legacyUbWodEmail);
    trackScrollDepth.init();
    ads2Refresher.init();
  });

</script>        
                  <script>
            require(['stickyCol'], function(stickyCol) {
              stickyCol.enableListeners('.left-content', '.right-rail', '.sticky-column');
            });
          </script>
          <!-- Set up the share links. -->
          <script type="text/javascript">
            require(['svgReplace'], function(svgReplace) {
              svgReplace.init();
            });
            require(['shareLinks'], function(shareLinks) {
              shareLinks.init();
            });
          </script>
                
        <!--Global footer-->
        
<!--Global footer start-->
<footer class="global-footer ">

  <div class="footer-mast clearfix">
    <div class="mw-logo-section lazyload">
      <a href="https://www.merriam-webster.com/" class="footer-logo">Merriam Webster</a>
    </div>
    <div class="footer-mast-content clearfix">
      <div class="footer-subscribe-block">
        <div class="footer-subscribe-msg">
          <p>Learn a new word every day. Delivered to your inbox!</p>
        </div>
        <form class="footer-subscribe js-wod-subscribe-frm">
          <input class="footer-subscribe-field" type="text" name="email" value="" aria-label="Sign up for Merriam-Webster's Word of the Day newsletter" placeholder="Your email address">
          <input class="footer-subscribe-button" type="submit" name="submit" value="SUBSCRIBE">
          <input class="footer-subscribe-button hidden arrow" type="submit" name="submit" value="&gt;">
        </form>
      </div>
      <div class="footer-dictionaries">
        <p>OTHER MERRIAM-WEBSTER DICTIONARIES</p>
        <div class="other-dictionaries">
          <ul>
            <li><a href="http://www.spanishcentral.com/">SPANISH CENTRAL</a></li>
            <li><a href="http://learnersdictionary.com/">LEARNER'S ESL DICTIONARY</a></li>
            <li><a href="http://www.wordcentral.com/">WORDCENTRAL FOR KIDS</a></li>
            <li><a href="http://www.visualdictionaryonline.com/">VISUAL DICTIONARY</a></li>
          </ul>
          <ul>
            <li><a href="http://scrabble.merriam.com/">SCRABBLE<sup>&reg;</sup> WORD FINDER</a></li>
            <li><a href="http://unabridged.merriam-webster.com/">MERRIAM-WEBSTER'S UNABRIDGED DICTIONARY</a></li>
            <li><a href="http://arabic.britannicaenglish.com/en">BRITANNICA ENGLISH - ARABIC TRANSLATION</a></li>
            <li><a href="http://www.nglish.com/spanish/en/">NGLISH - SPANISH-ENGLISH TRANSLATION</a></li>
          </ul>
        </div>
      </div>
      <div class="follow-us lazyload">
        <p>FOLLOW US</p>
        <div class="follow-links">
          <ul>
            <li><a href="https://www.facebook.com/merriamwebster" rel="noopener" target="_blank" class="social-link social-fb">Facebook</a></li>
            <li><a href="https://twitter.com/merriamwebster" rel="noopener" target="_blank" class="social-link social-tw">Twitter</a></li>
            <li><a href="https://www.youtube.com/user/MerriamWebsterOnline" rel="noopener" target="_blank" class="social-link social-play">YouTube</a></li>
            <li><a href="https://www.instagram.com/merriamwebster/" rel="noopener" target="_blank" class="social-link social-ig">Instagram</a></li>
          </ul>
        </div>
      </div>
    </div>
  </div>

  <div class="footer-foot clearfix footer-oa">
    <div class="footer-foot-content clearfix">
      <ul class="footer-menu browse-dictionary">
        <li><a href="https://www.merriam-webster.com/browse/dictionary/a">Browse the Dictionary:</a></li>
        <li><a href="https://www.merriam-webster.com/browse/dictionary/a">a</a></li>
        <li><a href="https://www.merriam-webster.com/browse/dictionary/b">b</a></li>
        <li><a href="https://www.merriam-webster.com/browse/dictionary/c">c</a></li>
        <li><a href="https://www.merriam-webster.com/browse/dictionary/d">d</a></li>
        <li><a href="https://www.merriam-webster.com/browse/dictionary/e">e</a></li>
        <li><a href="https://www.merriam-webster.com/browse/dictionary/f">f</a></li>
        <li><a href="https://www.merriam-webster.com/browse/dictionary/g">g</a></li>
        <li><a href="https://www.merriam-webster.com/browse/dictionary/h">h</a></li>
        <li><a href="https://www.merriam-webster.com/browse/dictionary/i">i</a></li>
        <li><a href="https://www.merriam-webster.com/browse/dictionary/j">j</a></li>
        <li><a href="https://www.merriam-webster.com/browse/dictionary/k">k</a></li>
        <li><a href="https://www.merriam-webster.com/browse/dictionary/l">l</a></li>
        <li><a href="https://www.merriam-webster.com/browse/dictionary/m">m</a></li>
        <li><a href="https://www.merriam-webster.com/browse/dictionary/n">n</a></li>
        <li><a href="https://www.merriam-webster.com/browse/dictionary/o">o</a></li>
        <li><a href="https://www.merriam-webster.com/browse/dictionary/p">p</a></li>
        <li><a href="https://www.merriam-webster.com/browse/dictionary/q">q</a></li>
        <li><a href="https://www.merriam-webster.com/browse/dictionary/r">r</a></li>
        <li><a href="https://www.merriam-webster.com/browse/dictionary/s">s</a></li>
        <li><a href="https://www.merriam-webster.com/browse/dictionary/t">t</a></li>
        <li><a href="https://www.merriam-webster.com/browse/dictionary/u">u</a></li>
        <li><a href="https://www.merriam-webster.com/browse/dictionary/v">v</a></li>
        <li><a href="https://www.merriam-webster.com/browse/dictionary/w">w</a></li>
        <li><a href="https://www.merriam-webster.com/browse/dictionary/x">x</a></li>
        <li><a href="https://www.merriam-webster.com/browse/dictionary/y">y</a></li>
        <li><a href="https://www.merriam-webster.com/browse/dictionary/z">z</a></li>
        <li><a href="https://www.merriam-webster.com/browse/dictionary/0">0-9</a></li>
      </ul>

      <ul class="footer-menu">
        <li><a href="https://www.merriam-webster.com/">Home <span class="rborder"></span></a></li>
        <li><a href="https://www.merriam-webster.com/help">Help <span class="rborder"></span></a></li>
        <li><a href="https://www.merriam-webster.com/apps">Apps <span class="rborder"></span></a></li>
        <li><a href="https://www.merriam-webster.com/about-us">About Us <span class="rborder"></span></a></li>
        <li><a href="https://www.merriam-webster.com/shop-dictionaries">Shop <span class="rborder"></span></a></li>
        <li><a href="https://www.merriam-webster.com/advertising">Advertising Info <span class="rborder"></span></a></li>
        <li><a href="https://www.dictionaryapi.com/" rel="noopener" target="_blank">Dictionary API <span class="rborder"></span></a></li>
        <li><a href="https://www.merriam-webster.com/contact-us">Contact Us <span class="rborder"></span></a></li>
        <li><a href="https://www.merriam-webster.com/video">Video <span class="rborder"></span></a></li>
        <li><a rel="nofollow" href="https://www.merriam-webster.com/my-saved-words/">Favorites <span class="rborder"></span></a></li>
        <li><a href="https://www.merriam-webster.com/words-at-play/word-of-the-year-2018-justice">Word of the Year <span class="rborder"></span></a></li>
        <li><a href="https://www.merriam-webster.com/legal">Law Dictionary <span class="rborder"></span></a></li>
        <li><a href="https://www.merriam-webster.com/medical">Medical Dictionary <span class="rborder"></span></a></li>
        <li><a href="https://www.merriam-webster.com/privacy-policy">Privacy Policy <span class="rborder"></span></a></li>
        <li class="last"><a href="https://www.merriam-webster.com/terms-of-use">Terms of Use</a></li>
      </ul>

      <ul class="footer-menu">
        <li><a href="https://www.merriam-webster.com/browse/thesaurus/a">Browse the Thesaurus <span class="rborder"></span></a></li>
        <li><a href="https://www.merriam-webster.com/browse/medical/a">Browse the Medical Dictionary<span class="rborder"></span></a></li>
        <li><a href="https://www.merriam-webster.com/browse/legal/a">Browse the Legal Dictionary<span class="rborder"></span></a></li>
        <li class="last"><a href="http://www.spanishcentral.com/browse/a" rel="noopener" target="_blank">Browse the Spanish-English Dictionary</a></li>
      </ul>
            <p class="copyright">© 2019 Merriam-Webster, Incorporated</p>
    </div>
  </div>
</footer>
<!--Global footer end-->

        <!-- Footer Recirc bar disabled on certain pages -->
                          
      </div>
    </div>

    <!-- Subscribe WOD Overlay -->
    <div id="subscribe-overlay"></div>
<script>
  require(['subscribeOverlay'], function(subscribeOverlay) {
    window.setTimeout(function() {
      subscribeOverlay.init();
    },6000);
  });
</script>
    <script>
      // delete our require function and load the require library
      delete window.require; //need this or else can't load default require lib.
    </script>

    
    <!-- Modernizr (only needed for games)-->
                  <!-- Loading JS -->
                              <script src="assets/mw/app-bundles/mw-2019-05-09.13-43-27.000000-app-bundle/js/main.min.js"></script>
                   
        <!-- OneTrust Cookies Consent Notice start -->
    <script  src="https://cdn.cookielaw.org/consent/30962604-e5fc-42aa-9b7a-4d42a7362f19.js" type="text/javascript" charset="UTF-8"></script>
<!-- OneTrust Cookies Consent Notice end -->

<script src="assets/mw/static/shared/mw-shared/js/onetrust/onetrust.min.js"></script>  
          
    <script>
      require(['adPOS'], function(adPOS) {
        adPOS.init();
      })
    </script>
      
        <script>
      require(['common', 'audioplayer', 'wodSubscribe', 'gaTracker', 'fbSdk', 'raf'], function(common, audioplayer, wodSubscribe, gaTracker, fbSdk) {

        //Prep page counter cookie (expiration = 10 minutes)
        var pvc = $.cookie('pvc');
        pvc = (pvc === undefined) ? 1 : (parseInt(pvc) + 1);
        var date = new Date();
        date.setTime(date.getTime() + (10 * 60 * 1000));
        $.cookie('pvc', pvc, { expires: date, path: '/' });

        //JC: needs to be refactored
        common.init();
        //JC: Initiating ad libraries (google slot lib, ) & initializing slots

        //JC: this enables audio playback everywhere (wod & definitions)
        audioplayer.init();

         //JC: Enabling WOD subscribe forms if present
        wodSubscribe.init();

        //JC: Loading google analitics libary and starting tracking
        gaTracker.init();

        //JC: special handling for spelling suggestionsand not found pages.
        if (window.mwdata.gaSpecialTracking) {
            // Track the virtual page click.
            var urlRef = (window.location.pathname.indexOf("/thesaurus") >= 0) ? '/thesaurus/':'/dictionary/';
            var url =  urlRef + window.mwdata.gaSpecialTracking + '/' + window.mwdata.gaSpecialTrackingWord;
            var gaCmd = function(){ga('send', 'pageview', url);};
            gaTracker.execCmd(gaCmd);
            console.log('Special tracking, type:', window.mwdata.gaSpecialTracking, url);
        }

        //JC: Facebook SDK is needed on all pages except for Home
        if (window.mwdata.isHome === false) {
          fbSdk.init();
        }
      });
    </script>

    <script>      
            require(['searchBar', 'autocomplete','toggleMenu'], function(searchBar,autocomplete,toggleMenu) {
        searchBar.init();
        autocomplete.init();
        toggleMenu.init();
      });
    </script>

    <!-- ability to disable ads -->
       
      <script>
        require(['adProcessor'], function(adProcessor) {
          adProcessor.prepareAdLibraries();
          //JC: by default we use a black-list, white-list is only being used if provided (rare cases)
          if (window.mwdata.adsWhitelist  !== null) {
            adProcessor.prepareOnlyTheseAdSlots(window.mwdata.adsWhitelist);
          } else {
            adProcessor.prepareAllAdSlotsExcept(window.mwdata.adsBlacklist);
          }          
        });
      </script>
    
        <script>
      var jwplayerPath = window.mwdata.jwPlayerPath + 'jwplayer';
      requirejs.config({paths: {jwplayer: jwplayerPath}});
    </script>
        
        
        <script>
      window.mwRequireCall.forEach(function(toCall) {
        require(toCall.reqName, toCall.reqFunc);
      });
    </script>
    
        <script type="text/javascript">
      require(['trackHeapEvents'], function(trackHeapEvents) {
        trackHeapEvents.trackEvents();
      });

    if (typeof(window.IntersectionObserver) !== "undefined") {
      require(['lozad'], function(lozad){
        window.mwdata.observer = lozad('.lazyload');
         // lazy loads elements with default selector as '.lozad'
        window.mwdata.observer.observe();
      });
    } else {
      //fallback to lazyload
        require(['lazySizes']);    
    }
    </script>

        

                                       <script defer src="assets/mw/app-bundles/mw-2019-05-09.13-43-27.000000-app-bundle/js/art-19.min.js"></script>  
             
          
        
    <!-- render blocking css/font/js -->
              <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:300,300i,400,700,900|Open+Sans:300,300i,400,400i,600,600i,700,700i|Playfair+Display:400,700">
    
                      <link rel="stylesheet" type="text/css" href="assets/mw/app-bundles/mw-2019-05-09.13-43-27.000000-app-bundle/css/art19.min.css">
              
  </body>
</html>